-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
57 lines (57 loc) · 1.97 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
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"dev": "lerna run dev --parallel",
"dev:offline": "REACT_APP_OFFLINE_MODE=true lerna run dev --parallel",
"dev-live": "PORT=4000 cd packages/server && yarn start",
"clean": "lerna run clean",
"build": "lerna run clean && lerna run build",
"lint": "lerna run lint --stream --concurrency 3",
"lint:fix": "lerna run lint:fix --stream --concurrency 3",
"prod": "cd packages/server && yarn start",
"generate-gql": "graphql-codegen --config codegen.yml",
"generate-gql-watch": "graphql-codegen --config codegen.yml --watch",
"test": "lerna run test --stream --concurrency 3",
"test-ci": "lerna run test --stream --concurrency 1",
"prepare": "husky install",
"pre-commit": "lerna run --concurrency 1 --stream pre-commit --since HEAD --exclude-dependents"
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"lerna": "^3.22.1",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@graphql-codegen/cli": "1.21.3",
"@graphql-codegen/typescript": "1.21.1",
"@graphql-codegen/typescript-generic-sdk": "^1.17.9",
"@graphql-codegen/typescript-operations": "^1.17.15",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^7.17.0",
"husky": "^6.0.0",
"lint-staged": ">=10",
"prettier": "2.2.1",
"scripty": "^2.0.0",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.1.3"
}
}