-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.82 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
{
"name": "@systerdyster/vue-boilerplate",
"version": "1.0.0",
"scripts": {
"clean": "rimraf www/*",
"start": "npm run clean && webpack-dev-server --mode development --config webpack.config.dev.js",
"prod": "npm run clean && webpack --mode production",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha --opts ./mocha.opts 'src/**/__tests__/*.spec.ts'",
"test:cover": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} nyc mocha --opts ./mocha.opts 'src/**/__tests__/*.spec.ts'",
"version": "npm-check --update"
},
"author": "Fredrik Gärdin",
"license": "MIT",
"repository": {
"url": "https://github.com/systerdyster/vue-boilerplate.git",
"type": "git"
},
"devDependencies": {
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"file-loader": "^6.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^16.2.1",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.1.1",
"node-sass": "^4.13.1",
"npm-check": "^5.9.2",
"nyc": "^15.0.0",
"pug-html-loader": "^1.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"ts-node": "^8.7.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"url-loader": "^4.0.0",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.1",
"vue-router": "^3.1.6",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
}
}