This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "dts-rmp",
"version": "1.0.0",
"description": "relationship management portal proof of concept",
"author": "dts",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"cypress": "npx cypress open",
"cypress-cli": "npx cypress run",
"generate": "nuxt generate",
"mongodb": "docker run --rm -p 27017:27017 mongo",
"seed": "node -r esm tools/seeder/seeder.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"@nuxtjs/auth": "4.9.1",
"@nuxtjs/axios": "5.10.2",
"@nuxtjs/dotenv": "1.4.1",
"@nuxtjs/tailwindcss": "2.0.0",
"bcryptjs": "^2.4.3",
"core-js": "2.6.11",
"cors": "2.8.5",
"cross-env": "7.0.2",
"esm": "^3.2.25",
"express": "4.17.1",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.24.1",
"mongoose": "5.9.10",
"morgan": "^1.10.0",
"nuxt": "2.13.0",
"nuxt-i18n": "^6.13.1",
"vue-scrollto": "^2.18.1",
"vue2-editor": "^2.10.2",
"vuelidate": "^0.7.5"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@shelf/jest-mongodb": "^1.2.1",
"@vue/test-utils": "^1.0.3",
"axe-core": "3.5.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"cypress": "4.5.0",
"cypress-axe": "^0.8.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "4.2.5",
"jest": "^24.1.0",
"nodemon": "^2.0.4",
"prettier": "^1.19.1",
"vue-jest": "^4.0.0-beta.4"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}