-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.23 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
{
"name": "k8s-gateway",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "babel src --out-dir dist --copy-files",
"test": "EXPRESS_PORT=9876 NODE_ENV=test FLOWNOTE_KEY_PUB='../../test/secrets/key.pub' mocha --recursive --watch --require @babel/register test",
"dev": "NODE_ENV=development FLOWNOTE_KEY_PUB='../../test/secrets/key.pub' nodemon --exec babel-node src/index.js",
"hit": "NODE_ENV=hit FLOWNOTE_KEY_PUB='../../test/secrets/key.pub' mocha --recursive --require @babel/register test/integration"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"kubernetes-client": "^8.2.0",
"lodash": "^4.17.14"
}
}