-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.64 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
{
"name": "zangai-react",
"version": "0.1.6",
"license": "MIT",
"author": "ZangaiFamily",
"homepage": "https://zangaifamily.github.io/at-ui-react",
"dependencies": {
"@types/react-highlight": "^0.12.1",
"@types/react-router-dom": "^4.3.1",
"@types/react-transition-group": "^2.0.15",
"react-highlight": "^0.12.0",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.5.2",
"rxjs": "^6.3.3"
},
"peerDependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rxjs": "^6.3.3",
"@types/react-transition-group": "^2.0.15"
},
"keywords": [
"at-ui",
"react",
"ui",
"framework",
"frontend"
],
"main": "./bundle/at-react.umd.js",
"module": "./esm5/index.js",
"typings": "./esm5/index.d.ts",
"es2015": "./esm2015/index.js",
"scripts": {
"start": "PORT=5000 SKIP_PREFLIGHT_CHECK=true react-app-rewired start",
"build": "PORT=5000 SKIP_PREFLIGHT_CHECK=true react-scripts build",
"release": "npm run build-umd && npm run build-esm2015 && npm run build-esm5 && npm run build-assets && npm run build-infos",
"build-esm2015": "rm -rf publish/esm2015 && tsc -p src/components/tsconfig.lib.json",
"build-esm5": "rm -rf publish/esm5 && tsc -p src/components/tsconfig.lib.es5.json",
"build-umd": "rm -rf publish && npx webpack --config script/webpack.config.js",
"build-assets": "cp -r src/assets/stylesheets publish/assets",
"build-infos": "cp package.json publish/package.json",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"react-highlight": "^0.12.0",
"react-router-dom": "^4.3.1",
"@baristalabs/react-app-rewire-raw-loader": "^0.1.3",
"@types/jest": "^23.3.11",
"@types/node": "^10.12.18",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"babel-plugin-import": "^1.11.0",
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"node-sass": "^4.13.1",
"raw-loader": "^1.0.0",
"react": "^16.7.0",
"react-app-rewired": "^1.6.2",
"react-dom": "^16.7.0",
"react-scripts": "2.1.1",
"sass-loader": "^7.1.0",
"source-map-explorer": "^1.6.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.1",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"url-loader": "^1.1.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}