forked from armadillo-apps/legs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 KB
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
56
57
58
59
60
61
{
"name": "legs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/server.js",
"start:dev": "nodemon ./src/server.js",
"start:drop": "cross-env NODE_ENV=development node ./src/server.js",
"start:db": "mongod --dbpath ~/data/db",
"test": "jest --runInBand __test__",
"test:watch": "jest --runInBand --watch __test__",
"test:coverage": "jest --runInBand --coverage __test__",
"lint": "eslint src __test__ --max-warnings 0",
"mongo:migrate": "node ./node_modules/migrate-mongo/bin/migrate-mongo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armadillo-apps/legs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/armadillo-apps/legs/issues"
},
"homepage": "https://github.com/armadillo-apps/legs#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"frameguard": "^3.1.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^7.0.1",
"mongoose": "^5.6.4",
"morgan": "^1.9.1"
},
"devDependencies": {
"@shelf/jest-mongodb": "1.1.0",
"cross-env": "^5.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"mongoose-seed": "^0.6.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"prettier": {
"tabWidth": 2,
"printWidth": 80,
"useTabs": false,
"singleQuote": false,
"semi": true
}
}