-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
{
"name": "stadiaplusdb",
"version": "1.0.0",
"description": "Addon database website for Stadia+",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"csass": "sass ./public/assets/scss:./public/assets/scss/dist",
"clean": "cd public/assets/scss && del-cli \"./dist/\" --force && cd ../../../ && del-cli \"./dist\" --force",
"build": "npm run clean && npm run csass && webpack --env.production",
"build:dev": "npm run clean && npm run csass && webpack --env.development",
"start": "npm run build && node ./dist/backend.js",
"start:dev": "npm run build:dev && node ./dist/backend.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mafrans/StadiaPlusDB.git"
},
"author": "Mafrans",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Mafrans/StadiaPlusDB/issues"
},
"homepage": "https://github.com/Mafrans/StadiaPlusDB#readme",
"dependencies": {
"@types/vue": "^2.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"css-loader": "^4.2.1",
"del-cli": "^3.0.1",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"file-loader": "^6.0.0",
"mongodb": "^3.6.0",
"node-fetch": "^2.6.0",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"sass": "^1.26.10",
"style-loader": "^1.2.1",
"tailwindcss": "^1.7.1",
"uikit": "^3.5.7",
"vue": "^2.6.11",
"vue-property-decorator": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/express-rate-limit": "^5.1.0",
"@types/express-session": "^1.17.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/passport": "^1.0.4",
"@types/passport-google-oauth": "^1.0.41",
"sass-loader": "^9.0.3",
"ts-loader": "^8.0.2",
"typedoc": "^0.18.0",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^3.9.7",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}