-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 911 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 911 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
{
"name": "talli-app",
"version": "1.0.0",
"description": "Portable voting system",
"repository": "github:tom-hightower/talli",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client-install": "npm install --prefix client",
"server-install": "npm install --prefix server",
"client": "npm start --prefix client",
"server": "nodemon server/server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build --prefix client",
"update": "npm i; npm run client-install; npm run server-install",
"prod": "pm2 start talli.config.js"
},
"author": "Tom, Jermiah, Adrianna, Jiayuan, Nick",
"license": "ISC",
"dependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10",
"npm": "^6.8.0",
"pm2": "^3.4.0"
},
"eslintConfig": {
"extends": "eslint-config-airbnb"
}
}