-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
{
"name": "teste_cashforce",
"version": "1.0.0",
"description": "",
"main": "/src/index.ts",
"scripts": {
"build": "npx tsc",
"db:reset": "npx sequelize-cli db:drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all",
"start": "node ./build/api/server.js",
"dev": "ts-node ./src/api/server.ts",
"test": "mocha -r ts-node/register ./src/tests/*$NAME*.{test,spec}.ts -t 10000 --exit",
"lint": "eslint ./src --ext .ts",
"compose:up": "docker-compose up -d --build",
"compose:down": "docker-compose down --remove-orphans",
"nodemon": "nodemon --watch \"./src/**\" --ext \"ts,js\" --ignore \"src/**/*.spec.ts,src/**/*.json\" --exec \"ts-node src/api/server.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fedolfo/cashForce.git"
},
"keywords": [],
"author": "Fedolfo",
"license": "ISC",
"bugs": {
"url": "https://github.com/Fedolfo/cashForce/issues"
},
"homepage": "https://github.com/Fedolfo/cashForce#readme",
"dependencies": {
"dotenv": "10.0.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"mysql2": "2.3.3",
"sequelize": "^6.19.0"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/chai-http": "4.2.0",
"@types/express": "4.17.13",
"@types/mocha": "9.1.0",
"@types/node": "16.11.7",
"@types/sequelize": "4.28.10",
"@types/shelljs": "^0.8.11",
"@types/sinon": "10.0.11",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "4.3.6",
"chai-http": "4.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "15.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"mocha": "9.2.1",
"nodemon": "2.0.15",
"sequelize-cli": "6.3.0",
"shelljs": "^0.8.5",
"sinon": "13.0.1",
"superagent": "^7.1.3",
"ts-node": "10.7.0",
"ts-node-dev": "1.1.8",
"typescript": "4.4.4"
}
}