-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "webprojectcreate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config=webpack.dev.js",
"build": "webpack --config=webpack.prod.js",
"core": "webpack --config=webpack.core.js",
"all": "webpack --config=webpack.all.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"eslint-check": "eslint --print-config path/to/main.js | eslint-config-prettier-check"
},
"author": "lich",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@types/node": "^13.1.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"core-js": "^3.6.4",
"css-loader": "^3.4.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.8.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"sass": "^1.24.0",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.2",
"typescript": "^3.8.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/angular": "^1.6.57",
"@types/ol": "^6.1.0",
"angular": "^1.7.9",
"ol": "^6.2.1"
}
}