-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 879 Bytes
/
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
{
"name": "retro-arcade",
"version": "0.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "^10.0.0",
"yarn": "^1.6.0"
},
"scripts": {
"prebuild": "yarn install",
"build": "webpack --module-bind js=babel-loader!eslint-loader",
"start": "yarn build --mode development --watch",
"prod": "yarn build --mode production"
},
"author": "",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"baconjs": "^1.0.1",
"classnames": "^2.2.5",
"eslint": "^1.6.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^3.5.1",
"howler": "^2.0.9",
"immutable": "^3.7.4",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
}
}