-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.68 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
{
"name": "treedoc-viewer",
"version": "0.1.71",
"main": "./dist/lib/lib.common.js",
"typings": "./dist/lib/lib.d.ts",
"files": [
"dist/lib/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"serve": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"build-app": "vue-cli-service build --dest dist/app",
"build-lib": "vue-cli-service build --dest dist/lib --target lib --name lib src/lib.ts",
"build": "vitest --run && yarn build-app && yarn build-lib",
"deploy": "yarn build-app && gh-pages -d dist/app && yarn gh-pages -d dist/app -r [email protected]:treedoc/treedoc.github.io.git -b master",
"lint": "vue-cli-service lint"
},
"dependencies": {
"bootstrap-vue": "^2.22.0",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"jsdom": "^20.0.0",
"lodash": "^4.17.21",
"msplit": "0.1.24",
"treedoc": "^0.3.44",
"ts-node": "~10.7.0",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-codemirror-lite": "^1.0.4",
"vue-property-decorator": "9.0.0",
"vue-router": "^3.4.6",
"vue2-datatable-component": "https://github.com/TrueCarry/vue2-datatable",
"yaml": "^1.10.0",
"yarn": "^1.22.22"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/yaml": "^1.9.7",
"@vue/cli-plugin-typescript": "^4.5.17",
"@vue/cli-service": "^4.5.17",
"@vue/test-utils": "^1.0.3",
"gh-pages": "^3.1.0",
"handlebars": "^4.7.6",
"tslint": "^6.1.3",
"typescript": "~4.6.4",
"vitest": "^0.23.4",
"vue-cli-plugin-e2e-webdriverio": "^2.0.3",
"vue-template-compiler": "^2.6.12"
}
}