forked from ExpediaGroup/insights-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "insights-explorer",
"version": "3.25.23",
"description": "Insights Explorer",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:ExpediaGroup/insights-explorer.git"
},
"keywords": [
"insights-explorer",
"insights"
],
"author": {
"name": "Expedia Group",
"email": "[email protected]"
},
"license": "Apache-2.0",
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.5.1",
"@graphql-codegen/typescript-operations": "2.4.2",
"@types/fs-extra": "11.0.4",
"@types/lodash": "4.14.202",
"@types/node": "18.15.11",
"@types/npm-license-crawler": "0.2.3",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-unicorn": "50.0.1",
"fs-extra": "11.2.0",
"globby": "11.0.4",
"graphql": "15.8.0",
"lodash": "4.17.21",
"npm-license-crawler": "0.2.1",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"reflect-metadata": "0.1.13",
"ts-node": "10.9.2",
"typescript": "4.6.4",
"vitest": "1.1.3"
},
"scripts": {
"license:thirdparty": "ts-node scripts/third-party.ts",
"prune:production": "npm run prune:production --workspaces --if-present",
"getVersion": "node -p \"require('./package.json').version\"",
"---------": "----------------------------------",
"start:backend": "npm start --workspace=@iex/backend",
"start:backend:prod": "npm run start:prod --workspace=@iex/backend",
"start:convertbot:prod": "npm run start:prod --workspace=@iex/convertbot",
"start:frontend": "run-p generate:watch \"start --workspace=@iex/frontend\"",
"start:frontend:nogen": "npm run start --workspace=@iex/frontend",
"start:slackbot:prod": "npm run start:prod --workspace=@iex/slackbot",
"start": "npm run generate && run-p start:frontend start:backend",
"start:nogen": "run-p start:frontend:nogen start:backend",
"-------": "-----------------------------------",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"verify:headers": "ts-node scripts/verify-file-headers.ts",
"------": "------------------------------------",
"generate": "graphql-codegen",
"generate:watch": "graphql-codegen --watch \"packages/frontend/src/**/*.ts\"",
"--------": "------------------------------------",
"clean": "npm run clean --workspaces",
"clean:deep": "npm run clean:deep --workspaces && rm -rf node_modules",
"build": "run-s build:backend generate build:tsc build:frontend:react",
"build:tsc": "tsc --build --incremental --verbose",
"build:backend": "npm run build --workspace=@iex/backend",
"build:frontend:react": "npm run build:react --workspace=@iex/frontend",
"-----": "------------------------------------",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}