-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "civic-hacking-hub",
"version": "1.0.0",
"description": "My scrumtrulescent Nuxt.js project",
"author": "duaimei",
"private": true,
"engines": {
"node": ">=12"
},
"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",
"it-cypress": "node_modules/.bin/cypress open"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookieparser": "^0.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.2",
"helmet": "^4.6.0",
"js-cookie": "^3.0.1",
"knex": "^0.21.17",
"multer": "^1.4.3",
"nuxt": "^2.15.8",
"objection": "^2.2.16",
"optional-require": "^1.1.8",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^4.2.1",
"@vue/test-utils": "^1.2.2",
"autoprefixer": "^10.3.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.4",
"cypress": "^8.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^24.1.0",
"nodemon": "^2.0.13",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.16",
"vue-jest": "^3.0.7"
}
}