-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.45 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
89
90
91
92
93
94
95
96
{
"name": "stripmaker",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "PUBLIC_URL=https://theopensystemslab.github.io/stripmaker react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cosmos": "cosmos",
"cosmos:export": "cosmos-export",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "yarn type-check && yarn lint:fix && pretty-quick --staged --pattern 'src/**/*.*'"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,md,css,scss}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=9",
"yarn": ">=0.14.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@bentobots/svg": "^0.0.4",
"@bentobots/vector2": "^0.1.17",
"@material-ui/core": "^4.9.12",
"animejs": "^3.2.0",
"clipper-js": "^1.0.2",
"drei": "^0.0.15",
"immer": "^6.0.3",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"react-spring": "^8.0.27",
"react-three-fiber": "^4.1.1",
"three": "^0.115.0",
"zustand": "^2.2.3"
},
"devDependencies": {
"@testing-library/dom": ">=5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/graphlib": "^2.1.5",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"gh-pages": "^2.2.0",
"husky": "^4.0.10",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^10.0.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"prettier-plugin-import-sort": "^0.0.3",
"pretty-quick": "^2.0.1",
"react-cosmos": "^5.2.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "~3.7.2"
}
}