-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.68 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
{
"name": "algorithmpachverb",
"version": "0.0.1",
"description": "wepack构建,typescript开发环境",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/webpack server --config config/webpack.dev.js --open --progress",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"build": "./node_modules/.bin/webpack --config config/webpack.prod.js --progress",
"analyz": "NODE_ENV=production npm_config_report=true npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/front-end-open/algorithm.git"
},
"keywords": [
"node",
"webpack",
"javascript",
"typescript"
],
"author": "PachVerb",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.3.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^4.6.0",
"error-overlay-webpack-plugin": "^1.0.0",
"eslint": "^8.0.1",
"html-webpack-plugin": "^4.5.2",
"jest": "^27.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.16.0",
"conventional-changelog-cli": "^2.1.1",
"core-js": "^3.18.2",
"semantic-release": "^17.4.4",
"ts-loader": "~8.2.0"
}
}