-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 955 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 955 Bytes
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
{
"name": "explodingnauts",
"version": "1.0.0",
"description": "Exploding Kittens online remake.",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"nodemon": "^1.19.1",
"sass": "^1.22.5",
"ws": "^7.1.0"
},
"scripts": {
"start": "npm run build-css && node server.js",
"test": "node server.js",
"build-css": "sass --source-map -s compressed web_client/scss:web_client/css",
"watch-css": "sass --watch --source-map -s compressed web_client/scss:web_client/css",
"watch-js": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoderDojoMaj/ExplodingNauts.git"
},
"author": "Coderdojo Majadahonda",
"license": "CC BY-NC-SA 4.0",
"bugs": {
"url": "https://github.com/CoderDojoMaj/ExplodingNauts/issues"
},
"homepage": "https://github.com/CoderDojoMaj/ExplodingNauts#readme"
}