forked from Elkfox/shopify-node-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 895 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
{
"name": "shopify-node-app",
"version": "0.0.0",
"private": true,
"scripts": {
"cleardbs": "node ./utils/cleardbs.js",
"seeddbs": "node ./utils/seeddbs.js",
"debug": "DEBUG=shopify-node-app:* npm start",
"debugwatch": "DEBUG=shopify-node-app:* npm watch",
"watch": "nodemon ./start.js",
"start": "node ./start.js"
},
"dependencies": {
"body-parser": "~1.16.0",
"connect-mongo": "^1.3.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"express": "~4.14.1",
"express-session": "^1.0.6",
"hbs": "~4.0.1",
"mongoose": "^4.9.3",
"morgan": "~1.7.0",
"serve-favicon": "~2.3.2",
"shopify-node-api": "^1.7.6",
"throng": "^4.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0"
}
}