forked from piwakawaka-2021/breakout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "super-arkanoid",
"version": "0.2.0",
"description": "Play the arcade game called Arkanoid or Breakout",
"repository": "https://github.com/jack-r-buckley/breakout",
"main": "server/index.js",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node server",
"dev": "run-p client server",
"build": "webpack --mode production --config ./webpack.config.js",
"webpack": "webpack",
"client": "webpack --watch",
"server": "node server",
"test": "jest --watch --noStackTrace",
"lint": "eslint --ext .js,.jsx ."
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"eslintConfig": {
"extends": "eda",
"ignorePatterns": [
"bundle.js"
]
},
"author": "EDA",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"eslint": "7.9.0",
"eslint-config-eda": "0.1.4",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"webpack-cli": "^4.3.1",
"webpack": "^5.12.1"
},
"dependencies": {
"express": "^4.17.1",
"npm-run-all": "^4.1.5"
}
}