-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "hackathon",
"version": "1.0.0",
"description": "A platform for hackathons.",
"author": "Andres Sweeney-Rios",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest",
"dev:api": "cross-env NODE_ENV=production nodemon server/index.js"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.1",
"body-parser": "^1.19.0",
"btoa": "^1.2.1",
"cookie-parser": "^1.4.5",
"cookie-universal-nuxt": "^2.1.3",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-fingerprint": "^1.2.2",
"markdown-it": "^11.0.0",
"markdown-it-highlightjs": "^3.2.0",
"mongodb": "^3.6.0",
"nuxt": "^2.14.3",
"saslprep": "^1.0.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@vue/test-utils": "^1.0.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-plugin-nuxt": ">=0.5.2",
"eslint-plugin-vue-a11y": "^0.0.31",
"jest": "^26.4.2",
"node-sass": "^4.14.0",
"nodemon": "^2.0.3",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"raw-loader": "^4.0.1",
"sass-loader": "^10.0.2",
"vue-jest": "^5.0.0-alpha.4"
}
}