-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "pinewood-derby-timer",
"version": "0.0.0",
"description": "The server for the pinewood derby project",
"private": true,
"main": "app.js",
"author": "tinesone",
"contributors": [
"Jetse Verschuren <[email protected]>"
],
"scripts": {
"start": "nodemon",
"no-database": "cross-env NO_DATABASE=true nodemon",
"server": "node ./src/app.js",
"prod": "cross-env NODE_ENV=production npm-run-all server",
"dev": "cross-env NODE_ENV=development npm-run-all server",
"lint": "npm-run-all lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --quiet \"src/**/*.js\"",
"autoformat": "npm-run-all autoformat:*",
"autoformat:prettier": "prettier --write .",
"autoformat:eslint": "eslint --fix --quiet \"src/**/*.js\""
},
"license": "UNLICENSED",
"dependencies": {
"bcrypt": "^5.0.0",
"ejs": "^3.0.2",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mysql": "^2.18.1",
"serialport": "^9.0.0",
"session-file-store": "^1.5.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2"
}
}