-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "api_express",
"version": "1.0.0",
"description": "A simple api made with express",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch src -e js,ts,json --exec \"ts-node index.ts\"",
"build": "tsup src/index.ts --format cjs --clean",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.1",
"@types/cookie-parser": "^1.4.3",
"@types/cookies": "^0.7.7",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/request": "^2.48.8",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"sequelize-cli": "^6.4.1",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mariadb": "^3.0.0",
"module-name": "^0.0.1-security",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"sequelize": "^6.21.2",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.8"
}
}