-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.43 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
{
"name": "the-room",
"version": "0.1.0",
"private": true,
"homepage": "http://balta-z-r.github.io/the-room",
"dependencies": {
"p5": "^0.9.0",
"react": "^16.9.0",
"react-alert": "^5.5.0",
"react-dom": "^16.9.0",
"react-p5-wrapper": "^2.0.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"react-transition-group": "^4.2.2",
"styled-components": "^4.3.2"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,core,config}/**/*.{js,jsx}": [
"eslint --fix",
"stylelint --config=.stylelintrc --fix",
"pretty-quick --staged",
"git add"
]
},
"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/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"cross-env": "^5.2.0",
"customize-cra": "^0.5.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"foreman": "^3.0.1",
"gh-pages": "^2.1.1",
"graphql-cli": "^3.0.12",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"prisma": "^1.34.5",
"react-app-rewire-aliases": "^0.2.0",
"react-app-rewired": "^2.1.3",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-yoctol": "^2.0.0",
"stylelint-order": "^3.0.1",
"stylelint-processor-styled-components": "^1.8.0",
"worker-loader": "^2.0.0"
}
}