-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
73 lines (73 loc) · 1.92 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
{
"name": "react-app-rewire-multiple-entry",
"version": "2.2.2",
"description": "Multiple Entry Support for Create-React-App",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix .",
"prepublish": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\""
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Derek-Hu/react-app-rewire-multiple-entry.git"
},
"keywords": [
"react",
"create-react-app",
"react-app-rewire",
"rewire",
"multi",
"multiple",
"entry",
"webpack"
],
"author": "benlv <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Derek-Hu/react-app-rewire-multiple-entry/issues"
},
"homepage": "https://github.com/Derek-Hu/react-app-rewire-multiple-entry#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,md}": [
"prettier --single-quote --write",
"git add"
],
"*.{js}": [
"prettier --single-quote --write",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/node": "^12.12.14",
"@types/xxhashjs": "^0.2.1",
"eslint": "^5.14.1",
"eslint-plugin-node": "^8.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"typescript": "^3.3.3"
},
"dependencies": {
"xxhashjs": "^0.2.2"
}
}