-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
{
"name": "remote-config",
"version": "0.0.1",
"description": "REST API that implements feature toggle and access tokens creation.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --exit-child -r tsconfig-paths/register src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"db:generate": "prisma generate",
"db:updb": "prisma db push",
"swagger-autogen": "node src/libs/swagger.js"
},
"author": "Samara Carvalho",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"@types/swagger-ui-express": "^4.1.3",
"prisma": "^5.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@prisma/client": "^5.1.1",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"swagger-autogen": "^2.23.4",
"swagger-ui-express": "^5.0.0"
}
}