-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.6 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
{
"name": "livro-waldemar-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"start": "npm run build && node dist/server.js",
"start:dev": "NODE_ENV=test babel-node src/server.js",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "NODE_ENV=test mocha --opts test/integration/mocha.opts test/integration/**/*_spec.js",
"test:unit": "NODE_ENV=test mocha --opts test/unit/mocha.opts test/unit/**/*_spec.js",
"db:dev:up": "docker compose --file docker-compose.dev.yml up -d --build",
"db:dev:down": "docker compose --file docker-compose.dev.yml down",
"lint": "eslint src/**/*.js test/**/*.js",
"lint:fix": "eslint --fix src/**/*.js test/**/*.js",
"prettier:list": "prettier --check 'src/**/*.js' 'test/**/*.js'",
"prettier:fix": "prettier --write 'src/**/*.js' 'test/**/*.js'",
"style:fix": "npm run lint:fix & npm run prettier:fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.4",
"@eslint/js": "^9.2.0",
"chai": "^4.4.1",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.2.0",
"mocha": "^6.2.3",
"prettier": "^1.19.1",
"sinon": "^16.1.1",
"supertest": "^4.0.2"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"config": "^1.29.4",
"express": "^4.19.2",
"express-acl": "^2.0.2",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.13.22"
}
}