-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 3.49 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "solarsystemts",
"version": "1.0.0",
"description": "the solarsysten simulator created by Vue.js",
"author": "Evan Moon <[email protected]>",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"unit": "jest test/unit/specs --coverage",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"build": "node build/build.js",
"postinstall": "npm rebuild"
},
"dependencies": {
"bootstrap": "^4.0.0-beta.2",
"bootstrap-vue": "^2.0.0-rc.22",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"jquery": "^3.2.1",
"moment": "^2.19.2",
"q": "^1.5.1",
"three": "^0.125.0",
"three-orbitcontrols-ts": "^0.1.2",
"typescript": "^3.5.1",
"vue": "^2.5.2",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-class": "^0.3.0",
"xeicon": "^2.3.3"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/jquery": "^3.2.16",
"@types/q": "^1.0.6",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chalk": "^2.0.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eventsource-polyfill": "^0.9.6",
"file-loader": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.7.0",
"node-notifier": "^8.0.1",
"node-sass": "^4.6.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^3.4.0",
"portfinder": "^1.0.13",
"postcss-loader": "^3.0.0",
"raw-loader": "^3.0.0",
"rimraf": "^2.6.0",
"sass-loader": "^7.1.0",
"semver": "^6.1.1",
"shelljs": "^0.8.3",
"ts-loader": "^6.0.2",
"url-loader": "^2.0.0",
"vue-class-component": "^7.1.0",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-property-decorator": "^8.1.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.2",
"vue-ts-loader": "0.0.3",
"vue-typescript-import-dts": "^4.0.0",
"webpack": "^4.0.0",
"webpack-bundle-analyzer": "^3.3.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.7.0",
"webpack-merge": "^4.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"setupFiles": [
"<rootDir>/test/unit/setup"
],
"mapCoverage": true,
"coverageDirectory": "<rootDir>/test/unit/coverage",
"collectCoverageFrom": [
"src/**/*.{js,vue}",
"!src/main.js",
"!src/router/index.js",
"!**/node_modules/**"
]
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}