This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "oclm-planner",
"version": "1.3.2",
"private": true,
"scripts": {
"serve": "npm-run-all --parallel serve:**",
"build": "npm-run-all --parallel build:**",
"lint": "vue-cli-service lint",
"build:app": "vue-cli-service build",
"build:lambda": "netlify-lambda -c lambda.config.js build lambda",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"serve:app": "vue-cli-service serve",
"serve:lambda": "cross-env NODE_ENV=development netlify-lambda -c lambda.config.js serve lambda",
"test:unit": "vue-cli-service test:unit",
"upload": "babel-node-ts database/scripts/upload.ts",
"backup": "babel-node-ts database/scripts/backup.ts"
},
"gitHooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.1.0",
"encoding": "^0.1.13",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"material-design-icons-iconfont": "^5.0.1",
"mongodb": "^3.3.2",
"node-fetch": "^2.6.7",
"pdfmake": "^0.1.60",
"request": "^2.88.0",
"roboto-fontface": "*",
"serverless-http": "^2.3.0",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-pdf": "^4.0.7",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.1.3",
"vuetify": "^1.5.16",
"vuex": "^3.1.1",
"vuex-module-decorators": "^0.10.1",
"vuex-persistedstate": "^2.5.4"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-typescript": "^7.6.0",
"@types/body-parser": "^1.17.1",
"@types/cheerio": "^0.22.13",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/jest": "^23.1.4",
"@types/jsonwebtoken": "^8.3.4",
"@types/mongodb": "^3.3.2",
"@types/node-fetch": "^2.5.12",
"@types/pdfmake": "^0.1.8",
"@types/request-promise": "^4.1.44",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-typescript": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-standard": "^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",
"babel-jest": "^23.6.0",
"babel-node-ts": "^1.0.3",
"commitizen": "^4.0.3",
"cross-env": "^5.2.1",
"csv-parse": "^4.4.6",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"netlify-lambda": "^1.6.3",
"npm-run-all": "^4.1.5",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-template-compiler": "^2.6.10"
},
"license": "GPL-3.0-or-later",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}