-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
123 lines (123 loc) · 4.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "ying-datastructures-algorithms",
"version": "2.0.0",
"description": "a datastructures and algorithms lib with typescript",
"main": "src/index.ts",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.9.2",
"@babel/runtime-corejs2": "^7.9.2",
"@types/eslint": "^7.2.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.8",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@typescript-eslint/typescript-estree": "^4.19.0",
"acorn": "^7.1.0",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.3.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^1.0.0",
"commitizen": "^4.1.5",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"core-js": "^3.6.5",
"cross-env": "^5.2.1",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^3.2.0",
"cz-customizable": "^6.3.0",
"dotenv": "^8.2.0",
"es6-promise": "^4.2.5",
"eslint": "^7.22.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.3",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.5.0",
"npx": "^10.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss": "^8.2.13",
"postcss-import": "^12.0.1",
"postcss-load-config": "^2.0.0",
"postcss-loader": "^5.2.0",
"postcss-plugin": "^1.0.0",
"postcss-px-to-viewport": "^1.1.1",
"postcss-url": "^8.0.0",
"pre-commit": "^1.2.2",
"precss": "^4.0.0",
"prettier": "^2.0.4",
"prettierrc": "0.0.0-5",
"pretty-quick": "^2.0.1",
"proxy": "^0.2.4",
"puppeteer": "^2.0.0",
"style-loader": "^0.23.1",
"thread-loader": "^2.1.3",
"ts-jest": "^26.5.4",
"ts-loader": "^6.2.0",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-jest": "0.0.1",
"tslib": "^1.11.1",
"typescript": "^4.2.3",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --config ./config/webpack.config.prod.js",
"dev": "cross-env NODE_ENV=development webpack serve --progress --config ./config/webpack.config.dev.js",
"jest": "cross-env NODE_ENV=development jest --cache --colors --coverage tests",
"lint": "cross-env NODE_ENV=development eslint --fix src",
"prettier": "cross-env NODE_ENV=development prettier config src tests *.js .*.js --write",
"cz": "yarn jest && yarn lint && yarn prettier && git add . && git cz && git push"
},
"keywords": [
"javascript",
"typescript",
"webpack",
"jest",
"eslint",
"prettier",
"babel",
"datastructures",
"algorithms"
],
"author": "[email protected]",
"license": "MIT",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
}
}