-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "api_compra_e_publicacao",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "nodemon src/server.ts",
"test": "mocha --exit -r ts-node/register tests/**/*.test.ts",
"cover": "nyc yarn test"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.11",
"@types/chai-http": "^4.2.0",
"@types/chai-things": "^0.0.34",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/factory-girl": "^5.0.2",
"@types/faker": "^4.1.11",
"@types/jsonwebtoken": "^8.3.8",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.7",
"@types/mongoose-paginate-v2": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-things": "^0.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"factory-girl": "^5.0.4",
"faker": "^4.1.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"sucrase": "^3.12.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.5",
"mongoose-paginate-v2": "^1.3.6"
}
}