-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 2.04 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "conduit-node",
"version": "1.0.0",
"description": "conduit on node",
"main": "app.js",
"scripts": {
"back": "nodemon --async-stack-traces --unhandled-rejections=strict ./app.js",
"back-inspect": "node --async-stack-traces --unhandled-rejections=strict inspect ./app.js",
"back-test": "NODE_ENV=test npm run back",
"build": "cd react-redux-realworld-example-app && npm run build",
"deploy": "git push heroku master",
"dev": "concurrently --kill-others 'npm run front --' 'npm run back --'",
"front": "cd react-redux-realworld-example-app && npm start",
"preinstall": "cd react-redux-realworld-example-app && npm install",
"start": "node --unhandled-rejections=strict ./app.js",
"start-prod": "env $(cat .env | xargs) NODE_ENV=production DATABASE_URL='postgres://node_express_sequelize_realworld_user:a@localhost:5432/node_express_sequelize_realworld' npm start",
"test": "mocha test --ignore-leaks test.js",
"test-api": "./realworld/api/run-api-tests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gothinkster/productionready-node-api.git"
},
"license": "ISC",
"dependencies": {
"body-parser": "1.15.0",
"commander": "6.2.1",
"cors": "2.7.1",
"errorhandler": "1.4.3",
"express": "4.13.4",
"express-jwt": "3.3.0",
"express-session": "1.13.0",
"jsonwebtoken": "7.1.9",
"method-override": "2.3.5",
"methods": "1.1.2",
"morgan": "1.7.0",
"passport": "0.3.2",
"passport-local": "1.0.0",
"pg": "8.5.1",
"request": "2.69.0",
"sequelize": "6.5.1",
"slug": "0.9.1",
"termit": "0.4.4"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"concurrently": "6.2.0",
"eslint": "7.11.0",
"eslint-plugin-prettier": "2.6.0",
"mocha": "6.2.2",
"newman": "5.2.3",
"nodemon": "1.11.0",
"prettier": "1.12.1",
"sqlite3": "5.0.2"
},
"cacheDirectories": [
"node_modules",
"react-redux-realworld-example-app/node_modules"
]
}