-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "jscode.bike",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"monaco-themes": "^0.3.3",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-monaco-editor": "^0.43.0",
"react-router-dom": "^6.2.1",
"react-scripts": "^4.0.3",
"react-spinners": "^0.10.6",
"react-spring": "^8.0.27",
"react-tabs": "^3.1.1",
"react-use": "^15.3.3",
"styled-components": "^5.1.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"prettier": "prettier --write \"**/*.js\" --ignore-path .gitignore",
"dev": "http-server build/",
"reinstall": "rm -rf node_modules && yarn",
"rebuild": "yarn run reinstall && yarn run build",
"bds": "yarn run rebuild && yarn run dev",
"inspect": "node --inspect-brk"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.13.0",
"chai": "^4.2.0",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"monaco-editor-webpack-plugin": "^7.0.1",
"pretty-quick": "^2.0.1",
"react-app-rewire-frontmatter-markdown": "^1.4.0",
"react-app-rewired": "^2.1.6",
"source-map-explorer": "^2.4.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}