-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "devcord_challenges",
"version": "1.0.0",
"description": "Devcord Challenges submission and archive.",
"author": "Andres Sweeney-Rios",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development DISCORD=local nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"api": "cross-env NODE_ENV=production DISCORD=local nodemon server/index.js --config nodemon.json",
"generate": "nuxt generate",
"production": "cross-env HTTPS=true NODE_ENV=production node server/index.js"
},
"dependencies": {
"@nuxtjs/axios": "^5.11.0",
"body-parser": "^1.19.0",
"btoa": "^1.2.1",
"cookie-parser": "^1.4.4",
"cookie-universal-nuxt": "^2.0.14",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"fs": "^0.0.1-security",
"net": "^1.0.2",
"nosqlite": "^0.2.2",
"nuxt": "^2.4.0",
"sha3": "^2.0.1"
},
"devDependencies": {
"@nuxtjs/style-resources": "^0.1.2",
"node-sass": "^4.12.0",
"nodemon": "^1.18.11",
"sass-loader": "^7.1.0"
},
"config": {
"nuxt": {
"host": "0.0.0.0"
}
}
}