-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 951 Bytes
/
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
{
"name": "wpcui",
"version": "2.0.0",
"scripts": {
"dev": "parcel assets/wpcui.js",
"prod": "parcel build assets/wpcui.js",
"pretty": "npx prettier --write ./assets/",
"bundle": "zip -r wpcui.zip . -x \"node_modules/*\" \".git/*\" \".idea/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaronVonPerko/wpcui.git"
},
"author": "Chris Perko",
"license": "ISC",
"bugs": {
"url": "https://github.com/BaronVonPerko/wpcui/issues"
},
"homepage": "https://github.com/BaronVonPerko/wpcui#readme",
"dependencies": {
"@types/react": "^17.0.3",
"axios": "^0.21.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^16.13.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@wordpress/env": "^4.0.0",
"parcel-bundler": "^1.3.1",
"prettier": "2.2.1",
"typescript": "^4.2.4"
}
}