forked from shreyas-a/mario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "mario",
"version": "1.0.0",
"description": "React powered Mario game.",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"server": "node server.js"
},
"keywords": [],
"author": "Shreyas Agarkar <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shreyas-a/mario"
},
"engines": {
"node": "7.10.0"
},
"license": "ISC",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-plugin-react": "^7.3.0",
"express": "^4.15.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0"
}
}