-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "snake",
"version": "0.1.0",
"private": true,
"homepage": "https://ywongau.github.io/snake",
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "4.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"dev": "cross-env NODE_ENV=test mocha --reporter nyan",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"babel": {
"presets": [
"@babel/env",
"react-app"
]
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@testing-library/react-hooks": "^3.4.2",
"@types/chai": "^4.2.14",
"@types/enzyme": "^3.10.8",
"@types/mocha": "^8.0.3",
"@types/sinon": "^9.0.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"gh-pages": "^3.1.0",
"ignore-styles": "^5.0.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.0",
"sinon": "^9.2.1"
}
}