-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.59 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
{
"name": "keep-alive-comp",
"version": "0.1.4",
"description": "React Component keep-alive",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.emp.config.js",
"build:emp": "cross-env NODE_ENV=production webpack --config config/webpack.emp.config.js",
"build:lib": "cross-env NODE_ENV=production webpack --config config/webpack.lib.config.js",
"release": "npm publish",
"test": "cross-env NODE_ENV=test jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zero9527/keep-alive.git"
},
"keywords": [
"keep-alive",
"keep",
"alive",
"react"
],
"author": "zero9527",
"license": "ISC",
"bugs": {
"url": "https://github.com/zero9527/keep-alive/issues"
},
"homepage": "https://github.com/zero9527/keep-alive#readme",
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@testing-library/react-hooks": "^3.3.0",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-router": "^5.1.5",
"@types/tapable": "^1.0.5",
"@types/webpack": "^4.41.7",
"@types/webpack-dev-server": "^3.10.1",
"babel-cli": "^6.26.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"file-loader": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.3.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"react": "^16.12.0",
"react-dom": "^16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"style-loader": "^1.1.3",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-manifest-plugin": "^2.2.0",
"without-props": "^1.0.1"
}
}