-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.65 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
{
"name": "luna",
"version": "1.0.0",
"description": "starter",
"main": "index.js",
"scripts": {
"prestart": "",
"start": "NODE_ENV=development webpack-dev-server --hot",
"build-dll": "webpack --config webpack.dll.config.js",
"build": "npm run build-dll && npm run build-main",
"build-main": "webpack --config webpack.prod.config.js",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,html,sass,json}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,tsx,js,jsx,css,html,sass,json}\"",
"test": "jest",
"changelog": "lerna-changelog"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/qin9smile/luna.git"
},
"author": "charlotte",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/qin9smile/luna/issues"
},
"homepage": "/~https://github.com/qin9smile/luna#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"antd": "^3.12.4",
"chalk": "^2.4.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"save-dev": "^2.0.0",
"typescript": "^3.2.4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@commitlint/cli": "^7.4.0",
"@commitlint/config-conventional": "^7.3.1",
"@types/jest": "^23.3.13",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.0.1",
"@types/webpack": "^4.4.24",
"babel-loader": "^8.0.5",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lerna-changelog": "^0.8.2",
"lint-staged": "^8.1.1",
"prettier": "^1.16.1",
"react-hot-loader": "^4.6.3",
"redux-devtools": "^3.5.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test",
"pre-push": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,md,css,html}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
],
"package-lock": [
"git rm --cached"
]
},
"changelog": {
"labels": {
"feature": "New Feature",
"bug": "Bug Fix"
}
}
}