-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "api-console",
"version": "0.1.0",
"private": true,
"license": "GPL-2.0+",
"homepage": ".",
"devDependencies": {
"@vitejs/plugin-react": "^4.1.1",
"@vitest/coverage-v8": "^0.34.6",
"deep-freeze": "0.0.1",
"jsdom": "^22.1.0",
"prettier": "npm:wp-prettier@^3.0.3",
"surge": "^0.18.0",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"dependencies": {
"classnames": "^2.2.5",
"hash.js": "^1.1.7",
"is-my-json-valid": "^2.20.6",
"oauth-1.0a": "^2.0.0",
"qs": "^6.3.0",
"react": "^16.14.0",
"react-click-outside": "github:tj/react-click-outside",
"react-dom": "^16.14.0",
"react-input-autosize": "^1.1.0",
"react-json-tree": "^0.11.2",
"react-redux": "^7.2.6",
"react-tagsinput": "^3.13.6",
"react-tooltip": "^4.0.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"superagent": "^2.3.0",
"util": "^0.12.5",
"wpcom-proxy-request": "^7.0.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"build-wpcom": "WPCOM_BUILD=true vite build",
"serve": "vite preview",
"deploy": "npm run build && surge -p ./build -d wpconsole.surge.sh",
"test": "vitest"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}