forked from ChrisWiles/React-todoMVC
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 828 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 828 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
{
"name": "Fullstack-Todo",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:davbeck/React-todoMVC.git",
"author": "David Beck <code@davidbeck.co>",
"license": "MIT",
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "^4.0.0-alpha.0",
"cookie-parser": "^1.4.4",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"jwks-rsa": "^1.4.0",
"postgraphile": "^4.3.3"
},
"scripts": {
"start": "node index.js",
"client": "cd client && yarn start",
"dev": "concurrently --kill-others-on-fail \"nodemon index.js\" \"yarn client\"",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
}
}