-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.08 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
{
"name": "rainbow",
"version": "1.0.0",
"description": "",
"main": "webpack-build.config.js",
"directories": {
"example": "example"
},
"dependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"create:filelist": "npx mddir",
"dev": "webpack-dev-server --host 0.0.0.0 --config ./webpack-dev.config.js --port 8088 --open",
"dev:example": "webpack-dev-server --config ./webpack-dev.config.js --content-base ./examples --host 10.232.8.48 --port 8088",
"build": "rm -rf dist/ && webpack --config ./webpack-build-library.config.js",
"build:page": "rm -rf dist/ && webpack --config ./webpack-build-page.config.js",
"tslint-test": "tslint -c tslint.json 'src/**/*.ts'",
"re-install": "rm -rf node_modules/ && rm -f package-lock.json && npm cache clear --force && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liangyuqi/rainbow.git"
},
"author": "liangyuqi",
"license": "ISC",
"bugs": {
"url": "https://github.com/liangyuqi/rainbow/issues"
},
"homepage": "https://github.com/liangyuqi/rainbow#readme",
"devDependencies": {
"ajv": "^6.12.2",
"autodll-webpack-plugin": "^0.4.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.0.4",
"node-sass": "^4.13.0",
"rbush": "^3.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.3.5",
"tiny-sdf": "^1.0.2",
"ts-loader": "^6.0.1",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^3.5.1",
"url-loader": "^4.0.0",
"vue": "^2.6.11",
"vue-class-component": "^7.1.0",
"vue-hot-reload-api": "^2.3.0",
"vue-loader": "^15.8.3",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"vue-template-loader": "^0.4.1",
"webpack": "^4.32.2",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.1.14"
}
}