-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "t-creo-back-end",
"version": "1.0.0",
"description": "Backend para la aplicación T-CREo",
"main": "server.js",
"scripts": {
"start": "nodemon --watch src --exec ts-node src/server.ts",
"prod": "node lib/server.js",
"lint": "eslint src tests --ext .ts",
"pretest": "npm run lint",
"test": "jest --coverage",
"tsc": "tsc",
"upload-coverage": "cat coverage/lcov.info | coveralls",
"postinstall": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t-creo/back-end.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/t-creo/back-end/issues"
},
"homepage": "https://github.com/t-creo/back-end#readme",
"dependencies": {
"@types/emoji-strip": "^1.0.0",
"dictionary-en-us": "^2.1.1",
"dictionary-es": "^1.2.3",
"dictionary-fr": "^2.3.2",
"dotenv": "^8.1.0",
"emoji-strip": "^1.0.1",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"express-winston": "^4.0.0",
"nspell": "^2.1.2",
"twit": "^2.2.11",
"washyourmouthoutwithsoap": "^1.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-validator": "^3.0.0",
"@types/jest": "^24.0.18",
"@types/supertest": "^2.0.8",
"@types/twit": "^2.2.22",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"jest": "^26.0.1",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.9.5"
}
}