-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.65 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
{
"name": "rawsel",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"dist": "dotnet serve -d docs -p 8081 -a 0.0.0.0 --path-base rawsel",
"lint": "vue-cli-service lint",
"test": "set TS_NODE_PROJECT=tsconfig.testing.json&&mocha --require ts-node/register test/**/*.ts",
"nyc": "set TS_NODE_PROJECT=tsconfig.testing.json&&nyc --all --reporter=html --reporter=text --reporter=lcov node_modules/mocha/bin/_mocha --require ts-node/register test/**/*.ts --exit"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vuetify": "^2.2.11"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mathjax": "0.0.36",
"@types/mocha": "^8.0.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-typescript": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"vue-cli-plugin-vuetify": "~2.0.6",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"eslintConfig": {},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"bracketSpacing": true
}
}