-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
83 lines (83 loc) · 2.11 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
{
"private": true,
"workspaces": {
"packages": [
"packages/cli",
"packages/gumdrop"
]
},
"keywords": [],
"license": "Apache-2.0",
"engines": {
"node": ">=14.17",
"yarn": "^1.19.0"
},
"scripts": {
"bootstrap": "lerna link && lerna bootstrap",
"build": "lerna run build",
"start": "lerna run start --scope gumdrop",
"lint": "prettier -c 'packages/*/{src,test}/**/*.{ts,tsx}' && npm run lint:eslint",
"lint:eslint": "eslint 'packages/*/{src,test}/**/*.{ts,tsx}'",
"lint:fix": "prettier --write 'packages/*/{src,test}/**/*.{ts,tsx}' && eslint --fix 'packages/*/{src,test}/**/*.{ts,tsx}'",
"format:fix": "lerna run format:fix"
},
"lint-staged": {
"packages/*/{src,test}/**/*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix --max-warnings=0"
]
},
"resolutions": {
"@types/react": "^17.0.16",
"@solana/web3.js": "1.95.8",
"redstone-node": "0.4.21",
"webpack-dev-server": "4.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"arrowParens": "avoid",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"cross-env": "^7.0.3",
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/animejs": "^3.1.3",
"@types/jest": "^24.0.0",
"@types/offscreencanvas": "^2019.6.4",
"@types/webgl2": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-react": "^7.25.1",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"jest": "26.6.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"
}
}