-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "meli-simian-app-beta",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-push": "yarn coverage"
}
},
"scripts": {
"dev": "nodemon src/server.js",
"clean": "rm -rf ./build && mkdir build",
"build": "yarn clean && sucrase ./src -d ./build --transforms imports",
"start": "node build/server.js",
"migrate": "yarn sequelize db:migrate",
"test": "mocha --require sucrase/register ./tests/**/*.js --timeout 5000",
"coverage": "nyc --reporter=html --reporter=text mocha --require sucrase/register ./tests/**/*.js --timeout 5000"
},
"dependencies": {
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.3.3",
"sequelize": "^6.3.5",
"sucrase": "^3.15.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"sequelize-cli": "^6.2.0"
}
}