forked from mstop4/sync-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 950 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
36
{
"name": "sync-timer",
"version": "0.4.0",
"description": "Sync Timer",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=dev nodemon app.js -e js",
"test": "NODE_ENV=test mocha",
"heroku-postbuild": "npm run sass",
"sass": "node-sass ./stylesheets -o ./public/css --output-style nested",
"sass:watch": "node-sass --watch --recursive ./stylesheets -o ./public/css --output-style nested"
},
"engines": {
"node": "<9.0.0 >=8.11.2"
},
"author": "M.S.T.O.P.",
"license": "MIT",
"dependencies": {
"dotenv": "^6.2.0",
"express": "^4.16.3",
"morgan": "^1.9.1",
"pug": "^2.0.3",
"socket.io": "^2.2.0",
"uniqid": "^5.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"jsdom": "^12.0.0",
"mocha": "^5.2.0",
"node-sass": "^4.12.0",
"nodemon": "^1.18.7",
"puppeteer": "^1.15.0",
"socket.io-client": "^2.2.0"
}
}