-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
{
"name": "snake-2d",
"version": "1.0.0",
"description": "React based game of snake inspired by old Nokia phones snake",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"deploy": "gh-pages -d dist",
"test": "jest",
"lint": "standard",
"lint-fix": "standard --fix"
},
"jest": {
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/tests/setupTests.js"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"standard": {
"env": [
"jest"
]
},
"author": "Grzegorz Jakubiak",
"homepage": "https://grzegorz-jakubiak.github.io/snake",
"license": "ISC",
"dependencies": {
"changing-interval": "^1.0.2",
"is-equal": "^1.5.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"file-loader": "^4.1.0",
"gh-pages": "^2.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.8.0",
"standard": "^13.1.0",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}