forked from vikingeducation/project_mimirs_market
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "project_mimirs_market",
"version": "1.0.0",
"description": "A Viking eCommerce store for Thunder Gods that like to buy \"Antique Wooden Pizzas\"",
"main": "app.js",
"scripts": {
"start": "node app.js",
"debug": "node debug app",
"sql": "node_modules/.bin/sequelize",
"sql:migrate:undo": "npm run sql db:migrate:undo:all",
"sql:migrate": "npm run sql db:migrate",
"sql:seed:undo": "npm run sql db:seed:undo:all",
"sql:seed": "npm run sql db:seed:all",
"sql:s": "npm run sql:migrate:undo && npm run sql:migrate && npm run sql:seed",
"mg:seed": "node seeds/mongoose",
"seed": "npm run sql:s && npm run mg:seed",
"seeds": "npm run sql:s && npm run mg:seed",
"console": "node repl.js",
"c": "node repl.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikingeducation/project_mimirs_market.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vikingeducation/project_mimirs_market/issues"
},
"homepage": "https://github.com/vikingeducation/project_mimirs_market#readme",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-flash-messages": "^0.1.1",
"express-handlebars": "^3.0.0",
"faker": "^4.1.0",
"jasmine-node": "^1.14.5",
"load-helpers": "^1.0.1",
"mongoose": "^4.13.5",
"mongooseeder": "^2.0.5",
"morgan": "^1.9.0",
"morgan-toolkit": "^1.0.2",
"nodemon": "^1.12.1",
"pg": "^7.4.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.23.4",
"sequelize-cli": "^3.2.0",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"stripe": "^5.3.0"
}
}