-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.09 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": "@00-team/react-alert",
"private": false,
"version": "2.0.0",
"description": "00 Team React Alert",
"main": "./lib/index.js",
"scripts": {
"build": "webpack -c ./webpack/lib.ts",
"build:watch": "webpack -c ./webpack/lib.ts -w",
"start": "npm run demo",
"demo": "webpack serve -c ./webpack/demo.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/00-team/react-alert.git"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [],
"authors": [
"i007c"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/00-team/react-alert/issues"
},
"homepage": "https://github.com/00-team/react-alert#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@00-team/utils": "^0.1.8",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/react": "^18.0.16",
"@types/react-dom": "^18.0.6",
"@types/react-transition-group": "^4.4.5",
"@types/webpack-bundle-analyzer": "^4.4.1",
"autoprefixer": "^10.4.8",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"postcss-loader": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.3",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"peerDependencies": {
"react": "^16.8.1 || ^17 || ^18",
"react-dom": "^16.8.1 || ^17 || ^18"
},
"dependencies": {
"react-transition-group": "^4.4.5"
}
}