-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.78 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
{
"name": "vector_visualizer",
"version": "1.0.0",
"private": true,
"description": "Web app to visualize vector operations, transformations, etc.",
"author": "Tim Sanders <[email protected]>",
"engines": {
"node": "14"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"serve:prod": "vue-cli-service serve --mode=production --port=8081",
"test": "npm run test:unit && npm run test:e2e"
},
"dependencies": {
"@mdi/font": "^3.6.95",
"@types/gl-matrix": "^2.4.5",
"@types/lodash": "^4.14.155",
"camera-controls": "^1.22.1",
"core-js": "^2.6.5",
"extendable-error-class": "^0.1.2",
"gl-matrix": "^3.0.0",
"lodash": "^4.17.19",
"material-design-icons": "^3.0.1",
"rete": "^1.2.2",
"rete-connection-plugin": "^0.9.0",
"rete-history-plugin": "^0.2.1",
"rete-vue-render-plugin": "^0.5.0",
"roboto-fontface": "*",
"three": "^0.110.0",
"vue": "^2.6.6",
"vue-github-corners": "^1.2.3",
"vue-gl": "0.18.1",
"vue-resize": "^0.5.0",
"vue-router": "^3.0.1",
"vue-split-panel": "^1.0.4",
"vuetify": "^2.3.3"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@types/jest": "^23.1.4",
"@types/three": "^0.103.2",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-e2e-nightwatch": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-typescript": "^4.4.4",
"@vue/cli-plugin-unit-jest": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"autoprefixer": "^9.5.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-rewire": "^1.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.8.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"file-loader": "^3.0.1",
"jest": "^24.7.1",
"jest-serializer-vue": "^2.0.2",
"node-sass": "^7.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-url": "^8.0.0",
"pug": "^3.0.1",
"pug-plain-loader": "^1.0.0",
"sass": "^1.17.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^23.0.0",
"typescript": "~3.9.3",
"url-loader": "^1.1.2",
"vue-cli-plugin-vuetify": "^0.6.1",
"vue-jest": "^3.0.4",
"vue-style-loader": "^4.1.2",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.2.2",
"webpack": "^4.30.0"
}
}