forked from Mobistudy/MobistudyWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 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
{
"name": "mobistudyweb",
"version": "0.1.1",
"description": "The web interface of Mobistudy for researchers",
"productName": "MobistudyWeb",
"author": "Dario Salvi <[email protected]>, Arvin Goburdhun <[email protected]>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue src",
"dev": "quasar dev",
"build": "quasar build",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"test:unit": "jest --updateSnapshot",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:unit:watchAll": "jest --watchAll",
"serve:test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788",
"concurrently:dev:jest": "concurrently \"quasar dev\" \"jest --watch\""
},
"dependencies": {
"@quasar/extras": "^1.9.9",
"axios": "^0.18.0",
"owasp-password-strength-test": "^1.3.0",
"quasar": "^1.14.2",
"vue-i18n": "^8.15.3",
"vuelidate": "^0.7.4",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@quasar/app": "^1.9.6",
"@quasar/quasar-app-extension-testing": "^1.0.0",
"@quasar/quasar-app-extension-testing-unit-jest": "^1.1.0-beta.7",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.0.0"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"browserslist": [
"last 1 version, not dead, ie >= 11"
]
}