-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "cat-kube-stateless",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"fs": "0.0.1-security",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"react": "^16.7.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3",
"request": "^2.88.0"
},
"scripts": {
"start": "react-scripts start",
"start-server": "./bin/dev_server.sh",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "./bin/deploy.sh"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"deploy-to-kube": {
"prod": {
"entrypoint": "src/services/server.js",
"context": "kubesail-loopdelicious",
"registry": "index.docker.io/v1/",
"port": 5500,
"protocol": "http",
"registryUsername": "joycelin1600",
"confirm": true
}
},
"devDependencies": {
"newman": "^4.4.0"
}
}