-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
66
67
68
69
70
71
72
73
{
"name": "offchan.org",
"version": "0.1.0",
"private": true,
"scripts": {
"serve:prod": "vue-cli-service build --mode=production --watch & node ./bin/serve.js",
"serve:dev": "vue-cli-service serve --mode=development",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"gen:cert": "sh ./bin/generate-local-cert.sh"
},
"dependencies": {
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.0-rc.13",
"firebase": "^5.8.4",
"localforage": "^1.7.3",
"markdown-it": "8.4.2",
"markdown-it-container": "2.0.0",
"markdown-it-katex": "2.0.3",
"markdown-it-sub": "1.0.0",
"markdown-it-sup": "1.0.0",
"register-service-worker": "^1.6.2",
"uuid": "^3.3.2",
"vue": "^2.6.7",
"vue-class-component": "^7.0.1",
"vue-offline": "^2.0.6",
"vue-property-decorator": "^7.3.0",
"vue-router": "^3.0.2",
"vuex": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/markdown-it": "0.0.7",
"@types/uuid": "^3.4.4",
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-e2e-cypress": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.4.1",
"@vue/cli-plugin-pwa": "^3.4.1",
"@vue/cli-plugin-typescript": "^3.4.1",
"@vue/cli-plugin-unit-jest": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"@vue/eslint-config-prettier": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-plugin-vue": "^5.2.2",
"express": "^4.16.4",
"lint-staged": "^8.1.4",
"node-sass": "^4.11.0",
"sass-loader": "^7.0.1",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333",
"vue-template-compiler": "^2.6.7"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}