-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 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
{
"name": "galaxy-traveler",
"version": "1.0.0",
"description": "A Node and React application",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --transpile-only --respawn --ignore-watch node_modules src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"migration": "ts-node ./node_modules/typeorm/cli.js migration:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcabralbfr/galaxy-traveler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabrielcabralbfr/galaxy-traveler/issues"
},
"homepage": "https://github.com/gabrielcabralbfr/galaxy-traveler#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.29"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.9",
"@types/node": "^8.0.29",
"ts-node": "3.3.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}