forked from zhaoky/flqin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.88 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
{
"name": "@fe_korey/resume",
"version": "1.0.3",
"description": "赵柯宇的web前端工程师简历",
"main": "dist/index.html",
"homepage": "https://www.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": "1.0.20",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime-corejs3": "^7.4.5",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"eclint": "^2.8.1",
"eslint": "^6.0.1",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"file-loader": "^4.0.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-pxtorem": "^4.0.1",
"prettier": "^1.17.1",
"script-ext-html-webpack-plugin": "^2.1.3",
"style-ext-html-webpack-plugin": "^4.0.1",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-prettier": "^1.1.0",
"url-loader": "^2.0.1",
"webpack": "^4.32.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-stylish": "^0.1.8",
"webpackbar": "^3.2.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot",
"lint": "eslint src && stylelint 'src/**/*.less' && eclint check",
"fix": "eslint src --fix && stylelint 'src/**/*.less' --fix && eclint fix ",
"analyze": "cross-env NODE_ENV=production 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": {
"**/*": [
"eclint fix",
"git add"
],
"src/**/*.less": [
"stylelint --fix",
"git add"
],
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 6.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}