-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "arcanjo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node dist/src/index.js",
"dev": "ts-node-dev src/index",
"dev:build": "node dist/index.js",
"build": "npm run build-ts",
"build-ts": "tsc",
"test": "jest"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"convert-excel-to-json": "^1.7.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"json2xls": "^0.1.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"pdfkit": "^0.13.0",
"pg": "^8.7.1",
"remove-accents": "^0.4.2",
"sequelize": "^4.42.0",
"slugify": "^1.6.5",
"underscore": "^1.13.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/helmet": "^0.0.42",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/sequelize": "^4.27.33",
"@types/uuid": "^8.3.4",
"concurrently": "^4.1.0",
"jest": "^27.4.7",
"ts-node-dev": "^1.1.8",
"typescript": "^3.2.2"
}
}