-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
66
67
68
{
"name": "mrboard",
"version": "0.1.0",
"description": "",
"main": "dist/backend/index.js",
"scripts": {
"frontend": "vue-cli-service serve",
"backend": "tsc-watch --onSuccess 'node .'",
"backend-prod": "tsc && node dist/backend/index.js",
"build": "vue-cli-service build",
"dev": "pm2 start pm2.config.dev.json",
"prod-pm2": "npm run build && pm2 start pm2.config.prod.json",
"stop-pm2": "pm2 stop pm2.config.prod.json"
},
"author": "Sarah Ohlin <sarahohlin1@gmail.com> (https://github.com/sarahkittyy)",
"license": "MIT",
"dependencies": {
"debounce": "^1.2.1",
"vue": "^2.6.12",
"vue-router": "^3.5.1",
"vuelidate": "^0.7.6",
"vuetify": "^2.5.0",
"vuex": "^3.6.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bluebird": "^3.5.34",
"@types/cheerio": "^0.22.28",
"@types/express-fileupload": "^1.1.6",
"@types/express-session": "^1.17.0",
"@types/faker": "^4.1.12",
"@types/node": "^14.14.45",
"@types/passport": "^1.0.6",
"@types/passport-steam": "^1.0.1",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"@vue/cli": "^5.0.4",
"@vue/cli-service": "^5.0.4",
"app-root-path": "^3.0.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.9",
"connect-session-sequelize": "^7.1.3",
"deepmerge": "^4.2.2",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.1",
"express-validator": "^6.11.1",
"faker": "^5.5.3",
"form-data": "^3.0.1",
"moment": "^2.29.1",
"mysql2": "^2.2.5",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-steam": "^1.0.15",
"pm2": "^5.2.0",
"reflect-metadata": "^0.1.13",
"sass": "^1.32.13",
"sass-loader": "^9.0.3",
"sequelize": "^6.20.0",
"sequelize-typescript": "^2.1.3",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.4",
"uuid": "^8.3.2",
"vue-snotify": "^3.2.1",
"vue-template-compiler": "^2.6.12"
}
}