-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 951 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
37
{
"name": "ix",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm i",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "node app.js",
"client": "cd client && npm start",
"nodemon": "nodemon app.js",
"dev": "concurrently \"nodemon app.js\" \"npm run client\"",
"iall": "npm ci && cd client && npm ci"
},
"author": "O",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"dotenv": "^10.0.0",
"knex": "^0.95.4",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.4",
"webpack-cli": "^4.6.0"
},
"engines": {
"node": "12.16.2",
"npm": "6.14.8"
}
}