-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.11 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
65
{
"name": "boilerplate-webapp",
"version": "0.4.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"start": "NODE_PATH=./src/backend node index.js",
"start-pm2": "pm2 start pm2.config.js",
"prod": "webpack -p --progress",
"dev": "webpack -d --watch",
"init-mongoose": "npm run init-api && npm install mongoose@^4.7.7 connect-mongo@^1.3.2",
"init-sequelize": "npm run init-api && npm install sequelize@^5.8.5 express-session-sequelize@^2.1.0 umzug@^2.1.0 pg@^7.4.1 pg-hstore@^2.3.2",
"init-api": "npm install boom@^4.2.0 hapi@^16.1.0 joi@^10.2.0",
"init-others": "npm install async@^2.1.4 [email protected] request@^2.87.0",
"migrate:up": "NODE_PATH=./src/backend node scripts/migrate/up.js",
"migrate:down": "NODE_PATH=./src/backend node scripts/migrate/down.js",
"migrate:new": "NODE_PATH=./src/backend node scripts/migrate/create.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "William McMurray",
"license": "ISC",
"dependencies": {
"animate.css": "^4.1.0",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"config": "^3.3.4",
"cookie-parser": "^1.4.5",
"dayjs": "^1.9.4",
"express": "^4.16.3",
"express-session": "^1.15.1",
"gridlex": "^2.7.1",
"lodash": "^4.17.20",
"morgan": "^1.9.1",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0",
"three": "^0.130.0",
"vue": "2.6.11",
"vue-i18n": "^8.25.0",
"vue-js-modal": "^2.0.0-rc.6",
"vue-router": "^3.0.6",
"vue-smoothscroll": "^0.2.0",
"vue-snotify": "^3.2.1",
"vue-tippy": "^4.8.0",
"vuex": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"css-loader": "^5.1.1",
"mini-css-extract-plugin": "^1.3.9",
"sass": "1.32.13",
"sass-loader": "^7.1.0",
"style-loader": "^2.0.0",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "2.6.11",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"yaml-loader": "^0.6.0"
}
}