forked from ovineio/ovine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.22 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
{
"name": "rt-admin",
"version": "0.0.1",
"description": "An excellent admin system.",
"private": false,
"scripts": {
"dev": "cross-env API_ENV=localhost webpack-dev-server",
"build": "cross-env API_ENV=production ENV=production webpack -p --progress",
"build:dll": "webpack --config build/webpack_dll.js -p --progress",
"build:analyzer": "cross-env API_ENV=production ENV=production ANALYZER=true webpack -p --progress",
"build:theme": "node-sass ./src/assets/styles/scss/themes -o ./src/assets/styles/themes --include-path node_modules/amis/scss/themes",
"open:dist": "http-server ./dist -i -g -o -p 7052 -P http://0.0.0.0:7052?",
"lint:ts": "tslint src/**/*.{ts,tsx}",
"lint:ts:fix": "yarn run lint:ts --fix",
"lint-staged": "lint-staged",
"pretty": "prettier --loglevel warn --write \"*.{js,md,yml,json,yaml}\" \"docs/**/*.md\" \"src/**/*.{css}\" ",
"clean": "rimraf ./dist/* ./.cache"
},
"keywords": [
"aims",
"admin",
"react",
"typescript"
],
"author": "carey toboos",
"license": "ISC",
"dependencies": {
"@hot-loader/react-dom": "^16.8.6",
"abortcontroller-polyfill": "^1.4.0",
"amis": "^1.0.9",
"core-js": "^3.6.4",
"immer": "^5.3.2",
"proxy-polyfill": "^0.3.0",
"react": "^16.8.6",
"react-router-dom": "^5.1.2",
"styled-components": "^5.0.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@types/lodash": "^4.14.149",
"@types/react": "^16.8.15",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^4.4.2",
"assets-webpack-plugin": "^3.9.10",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.13.0",
"babel-plugin-macros": "^2.8.0",
"cache-loader": "^3.0.0",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.12.1",
"husky": "^2.1.0",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.6.0",
"null-loader": "^3.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.19.1",
"react-hot-loader": "^4.12.11",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"thread-loader": "^2.1.2",
"ts-loader": "^5.4.5",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react-hooks": "^2.1.0",
"typescript": "^3.7.5",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.2.1"
},
"lint-staged": {
"*.{js,json,md,yml,yaml}|docs/**/*.md|src/**/*.{css}|build/*.js": "yarn pretty",
"src/**/*.{ts,tsx}": "yarn lint:ts:fix && yarn lint:style:fix"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged && git add --all"
}
},
"engines": {
"node": ">=9.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}