-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.97 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
{
"name": "mock-lib",
"version": "1.0.7",
"description": "my simple mock server",
"main": "index.js",
"scripts": {
"p": "ts-node --project ./scripts/tsconfig.json ./scripts/publish.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node --project ./example/tsconfig.json ./example/index.ts",
"checkformat": "prettier src/**/*.ts scripts/*.ts example/*.ts --list-different",
"format": "prettier src/**/*.ts scripts/*.ts example/*.ts --write",
"build": "npm run clean && tsc -p tsconfig.json && npm run build.html",
"build.html": "webpack --config config/webpack.config.js --mode=production",
"clean": "del-cli dist"
},
"author": "",
"keywords": [
"typescript",
"vue",
"mock"
],
"license": "MIT",
"devDependencies": {
"@types/browser-sync": "0.0.39",
"@types/node": "^9.6.6",
"awesome-typescript-loader": "^5.0.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"del-cli": "^1.1.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jsoneditor": "^5.14.1",
"prettier": "^1.12.1",
"style-loader": "^0.21.0",
"svg-url-loader": "^2.3.2",
"ts-loader": "^4.2.0",
"ts-node": "^6.0.0",
"tsconfig-paths": "^3.3.1",
"tslint-config-prettier": "^1.12.0",
"tslint-plugin-prettier": "^1.3.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue-jsoneditor": "^1.0.13",
"vue-loader": "^14.2.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"element-ui": "^2.3.6",
"url-search-params-polyfill": "^3.0.0",
"vue": "^2.5.16",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^6.0.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0",
"whatwg-fetch": "^2.0.4"
},
"dependencies": {
"browser-sync": "^2.23.7",
"typescript": "^2.8.3"
}
}