-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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": "login-api",
"version": "1.0.0",
"description": "a simple API that stores user email and password in a database",
"main": "app.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules src/app.ts",
"go": "docker-compose up",
"build": "rm -rf ./dist && npx tsc",
"test": "npm run build && mocha dist/test/test --exit ",
"start": "node dist/src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pecampelo/login-api.git"
},
"keywords": [
"api",
"typescript",
"mocha",
"signup"
],
"author": "Pedro Campelo Matheus",
"license": "ISC",
"bugs": {
"url": "https://github.com/pecampelo/login-api/issues"
},
"homepage": "https://github.com/pecampelo/login-api#readme",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"dependencies": {
"@prisma/client": "^3.3.0",
"dotenv-cli": "^4.1.0",
"pg": "^8.7.1",
"prisma": "^3.3.0"
}
}