-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
128 lines (128 loc) · 4.38 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
124
125
126
127
128
{
"name": "ying-template",
"version": "3.0.0",
"description": "a multiple pages app with typescript",
"main": "src/index.ts",
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/eslint": "^7.2.1",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.191",
"@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",
"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",
"cz-conventional-changelog": "^3.2.0",
"cz-customizable": "^6.3.0",
"dotenv": "^8.2.0",
"es6-promise": "^4.2.5",
"esbuild-loader": "^3.0.1",
"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": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^13.1.2",
"mini-css-extract-plugin": "^0.5.0",
"nodemon": "^2.0.7",
"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",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-webpack-plugin": "^2.1.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": "^2.2.0",
"typescript": "^4.2.3",
"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 nodemon ./config/dev-server.js",
"jest": "cross-env NODE_ENV=development jest --cache --colors --coverage tests",
"lint:js": "cross-env NODE_ENV=development eslint --fix src",
"lint:css": "cross-env NODE_ENV=development stylelint 'src/**/*.css' --fix",
"lint": "yarn lint:js && yarn lint:css",
"prettier": "cross-env NODE_ENV=development prettier config src tests *.js .*.js --write",
"prettier:all": "cross-env NODE_ENV=development prettier . --write",
"cz": "yarn jest && yarn lint && yarn prettier && git add . && git cz && git push",
"prepare": "husky install"
},
"keywords": [
"javascript",
"typescript",
"webpack",
"jest",
"eslint",
"stylelint",
"prettier",
"lint-staged",
"esbuild",
"multiple pages"
],
"author": "[email protected]",
"license": "MIT",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"yarn jest",
"yarn lint",
"yarn prettier"
]
}
}