forked from zhaoky/flqin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.99 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
{
"name": "@fe_korey/resume",
"version": "4.0.0",
"description": "赵柯宇的web前端工程师简历",
"main": "dist/index.html",
"homepage": "https://resume.flqin.com",
"keywords": [
"web前端",
"web",
"fe",
"front end",
"frontend",
"resume",
"fe-resume",
"learn-fe",
"前端",
"前端工程师",
"简历",
"前端简历",
"前端工程师简历",
"web前端简历"
],
"dependencies": {
"@fe_korey/fullpage": "^1.0.5",
"@fe_korey/mvvm": "^3.0.0-rc.3",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime-corejs3": "^7.11.2",
"autoprefixer": "^10.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.1.0",
"html-webpack-plugin": "4.4.1",
"husky": "^4.3.0",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"lint-staged": "^10.3.0",
"mini-css-extract-plugin": "^0.11.2",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^5.1.1",
"prettier": "^2.1.2",
"script-ext-html-webpack-plugin": "^2.1.3",
"stylelint": "^13.7.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-stylish": "^0.1.8",
"webpackbar": "^4.0.0"
},
"scripts": {
"build": "rm -rf dist && cross-env NODE_ENV=production BUILD_TYPE=mvvm webpack",
"build:seo": "rm -rf dist && cross-env NODE_ENV=production BUILD_TYPE=seo webpack",
"dev": "cross-env NODE_ENV=development BUILD_TYPE=mvvm webpack-dev-server",
"dev:seo": "cross-env NODE_ENV=development BUILD_TYPE=seo webpack-dev-server",
"lint": "eslint src && stylelint 'src/**/*.less'",
"fix": "eslint src --fix && stylelint 'src/**/*.less' --fix",
"analyze": "cross-env NODE_ENV=production BUILD_TYPE=mvvm MODE=analysis webpack",
"analyze:seo": "cross-env NODE_ENV=production BUILD_TYPE=seo MODE=analysis webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhaoky/flqin.git"
},
"bugs": "https://github.com/zhaoky/flqin/issues",
"author": "Korey <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/less/*.less": "stylelint --syntax less",
"src/js/*.js": "eslint --fix",
"src/**/*": "prettier --write"
},
"engines": {
"node": ">=10.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}