-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.51 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
88
{
"name": "cubed",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^10||^12||^13||^14||^15||^16||^17"
},
"homepage": ".",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/d3-ease": "^3.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/three": "^0.136.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"bootstrap": "^5.1.3",
"cross-env": "^7.0.3",
"d3-ease": "^3.0.1",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^4.3.8",
"lil-gui": "^0.16.0",
"lint-staged": "^12.3.1",
"node-sass": "^7.0.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-bootstrap": "^2.1.1",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"react-use": "^17.3.2",
"react-virtualized-auto-sizer": "^1.0.6",
"three": "^0.136.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"scripts": {
"start": "react-scripts start",
"build": "cross-env GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint '**/*.{ts,tsx}' && prettier '**/*.{json,yaml,scss}' --check",
"fix": "eslint '**/*.{ts,tsx}' --fix && prettier '**/*.{json,yaml,scss}' --write",
"verify": "npm run lint && cross-env CI=1 npm run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run verify"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{json,yaml,scss}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}