-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "headmaster2",
"version": "1.0.0",
"description": "DigitalCraft Express/SQL exercise",
"main": "index.js",
"scripts": {
"build": "cd client && npm run build",
"heroku-postbuild": "knex migrate:latest && cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"start": "node index.js",
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"initialize": "npx knex migrate:latest",
"initializeData": "npx knex migrate:latest && npx knex seed:run",
"postinstall": "cd client && npm install",
"addSuperUser": "node addSuperUser.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-session": "^1.17.0",
"knex": "^0.19.5",
"node-fetch": "^2.6.0",
"node-schedule": "^1.3.2",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"pg": "^7.12.1",
"pug": "^2.0.4",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"nodemon": "^1.19.3"
},
"engines": {
"node": "12.14.0"
}
}