-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 KB
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
{
"name": "magic-maze",
"version": "1.0.0",
"description": "Online version of board game Magic Maze",
"main": "webpack.config.js",
"scripts": {
"start": "node ./src/server/server.js",
"watch": "nodemon --config nodemon.json",
"dev": "webpack --config webpack.config.js",
"prod": "NODE_ENV=production webpack --config webpack.config.js --progress",
"heroku-postbuild": "npm run prod"
},
"repository": {
"type": "git",
"url": "https://github.com/Ashugeo/magic-maze.git"
},
"author": "Ashugeo",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ashugeo/magic-maze/issues"
},
"homepage": "https://github.com/Ashugeo/magic-maze",
"dependencies": {
"express": "^4.17.1",
"nodemon": "^2.0.6",
"npm": "^7.3.0",
"socket.io": "^2.4.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^3.6.0",
"extract-loader": "^3.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^5.0.2",
"jshint": "^2.12.0",
"jshint-loader": "^0.8.4",
"node-libs-browser": "^2.2.0",
"node-sass": "^7.0.0",
"sass": "^1.30.0",
"sass-loader": "^8.0.2",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^3.3.12"
}
}