-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "react-simple-snake",
"description": "A simple snake game created with the React JavaScript library",
"version": "0.2.2",
"main": "lib/snake.js",
"files": [
"lib"
],
"license": "MIT",
"author": {
"name": "maeldrapier",
"email": "[email protected]"
},
"keywords": [
"react",
"snake",
"game",
"simple"
],
"repository": {
"type": "git",
"url": "https://github.com/MaelDrapier/react-simple-snake.git"
},
"homepage": "https://maeldrapier.github.io/react-simple-snake",
"dependencies": {},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"scripts": {
"start": "webpack serve --config=demo/webpack.config.js",
"build:demo": "webpack --config=demo/webpack.config.js",
"build:lib": "webpack",
"predeploy": "npm run build:demo",
"deploy": "gh-pages -d demo/public",
"prepack": "npm run build:lib",
"lint": "eslint src/*.jsx --fix"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-loader": "^8.2.1",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"gh-pages": "^3.1.0",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.5.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.2"
}
}