-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.44 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.44 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
41
{
"name": "emblem",
"version": "1.0.0",
"main": "server.js",
"repository": {
"url": "git@github.com:wgoodall01/emblem.git",
"type": "git"
},
"scripts": {
"server.start": "cross-env NODE_ENV=production node server.js",
"client.build": "cd client && yarn build --silent",
"db.dev": "gcloud beta emulators datastore start --data-dir __data --host-port localhost:8079 --project wgoodall01-emblem",
"server.dev": "$(gcloud beta emulators datastore env-init --data-dir __data --project wgoodall01-emblem) && NODE_ENV=development PORT=8080 nodemon --inspect server.js",
"repl": "$(gcloud beta emulators datastore env-init --data-dir __data --project wgoodall01-emblem) && NODE_ENV=development node",
"client.dev": "cd client && yarn start --silent",
"install": "cd client && yarn",
"heroku-postbuild": "cd client && yarn build",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"author": "William Goodall <wgoodall01@gmail.com>",
"license": "MIT",
"dependencies": {
"@google-cloud/datastore": "^2.0.0",
"body-parser": "^1.17.1",
"browserify-sign": "^4.0.4",
"cross-env": "^5.0.0",
"express": "^4.15.2",
"httperrors": "^2.2.0",
"json-loader": "^0.5.4",
"keypair": "^1.0.1",
"morgan": "^1.8.1",
"node-rsa": "^0.4.2",
"request-promise-native": "^1.0.4",
"snyk": "^1.161.1"
},
"devDependencies": {
"nodemon": "^1.11.0"
},
"snyk": true
}