This repository has been archived by the owner on Feb 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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": "oministack-tindev-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon app.js --exec babel-node",
"test": "npm run lint && npm run test:unit",
"test:unit": "NODE_ENV=test ./node_modules/.bin/mocha --opts test/unit/mocha.opts test/unit/**/*.js",
"test:integration": "NODE_ENV=test mocha --opts test/integration/mocha.opts test/integration/**/*.js",
"test:contract": "NODE_ENV=test mocha --opts test/contract/mocha.opts test/contract/contracts/*.js",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"http-status": "^1.3.2",
"mongoose": "^5.7.5",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"joi": "^14.3.1",
"joi-assert": "0.0.3",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"testdouble": "^3.12.3"
}
}