forked from solana-labs/oyster
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.31 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
{
"private": true,
"version": "0.1.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"keywords": [],
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"bootstrap": "lerna link && lerna bootstrap",
"build": "REACT_APP_BUILD_TIME=$(date -u +'%Y-%m-%dT%H:%M:%SZ') lerna run build",
"start": "CI=true lerna run start --scope @oyster/common --stream --parallel --scope ",
"start-gov": "CI=true lerna run start --scope @solana/spl-governance --scope @oyster/common --stream --parallel --scope governance",
"build-gov": "yarn && yarn bootstrap && yarn build --scope @oyster/common --scope @solana/spl-governance --scope governance",
"lint": "eslint 'packages/*/{src,test}/**/*.ts' && prettier -c 'packages/*/{src,test}/**/*.ts'",
"lint:fix": "eslint --fix 'packages/*/{src,test}/**/*.ts' && prettier --write 'packages/*/{src,test}/**/*.ts'",
"deploy": "run-s deploy:docs build deploy:apps && gh-pages -d docs",
"deploy:docs": "lerna run docs",
"deploy:apps": "lerna run deploy:app",
"test": "lerna run test --concurrency 1 --stream"
},
"lint-staged": {
"packages/*/{src,test}/**/*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"arrowParens": "avoid",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/animejs": "^3.1.3",
"@types/jest": "^24.0.0",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.15.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"jest": "24.9.0",
"jest-config": "24.9.0",
"lerna": "3.22.1",
"lint-staged": "^10.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
},
"resolutions": {
"react": "16.13.1",
"react-dom": "16.13.1"
}
}