forked from nikau-2018/Buy-My-Kai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "simple-scaffold",
"description": "Ejected CRA and simple server.",
"version": "0.2.0",
"main": "index.js",
"author": "Rich Churcher",
"license": "Apache-2.0",
"private": false,
"repository": "[email protected]:richchurcher/simple-scaffold",
"dependencies": {
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"grunt-pure-grids": "^1.0.2",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"libsodium-wrappers": "^0.7.3",
"pure": "^2.85.0",
"sqlite3": "^4.0.2"
},
"devDependencies": {
"concurrently": "^4.0.1",
"jest": "^23.6.0",
"nodemon": "^1.18.4"
},
"scripts": {
"build": "cd client && yarn build",
"client": "cd client && yarn start",
"copy": "rm -rf ./public && mkdir public && cp -r client/build/* ./public",
"dev": "concurrently --kill-others-on-fail \"yarn client\" \"yarn server:dev\"",
"install:client": "cd client && yarn",
"message": "echo \"\n\n ===== PRODUCTION only. (Did you mean yarn dev?) =====\n\n\"",
"preinstall": "yarn install:client",
"server:dev": "nodemon index",
"server:prod": "node index",
"start": "yarn --silent message && yarn server:prod",
"test": "jest"
}
}