-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 KB
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
{
"name": "smartcourse-frontend",
"version": "1.3.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build-local": "cross-env NODE_ENV=development vue-cli-service build --dest './dist/public' --mode development",
"build-staging": "cross-env NODE_ENV=staging vue-cli-service build --dest './dist/public' --mode staging",
"build-prod": "cross-env NODE_ENV=production vue-cli-service build --dest './dist/public' --mode production",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit --require tests/unit/pre-setup.js",
"test": "npm run lint && npm run test:unit"
},
"dependencies": {
"firebase": "^5.5.0",
"material-icons": "^0.2.3",
"v-tooltip": "^2.0.0-rc.33",
"vue": "^2.5.21",
"vue-analytics": "^5.16.2",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-plugin-unit-mocha": "^3.4.0",
"@vue/cli-service": "^3.3.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"ajv": "6.8.1",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"date-fns": "^2.0.0-alpha.26",
"eslint": "^5.11.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.3",
"vue-template-compiler": "^2.6.4"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}