-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "splinter",
"version": "1.1.0",
"description": "Cloud Foundry Smoke Test Framework",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --watch --runInBand"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/deadlysyn/splinter.git"
},
"author": "Mike Hoskins",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/deadlysyn/splinter/issues"
},
"homepage": "https://gitlab.com/deadlysyn/splinter#readme",
"engines": {
"node": "12.13.0"
},
"dependencies": {
"amqplib": "^0.5.5",
"cfenv": "^1.2.2",
"express": "^4.17.1",
"fs": "0.0.1-security",
"ioredis": "^4.16.1",
"js-yaml": "^3.13.1",
"mongoose": "^5.9.7",
"mysql2": "^2.1.0",
"pg": "^8.0.0",
"prom-client": "^12.0.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^25.2.7",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"supertest": "^4.0.2"
}
}