-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "manif.cool",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"migration:generate": "npm run build && typeorm migration:generate -d dist/dataSource.js src/migration/$npm_config_name",
"migration:run": "npm run build && typeorm migration:run -d dist/dataSource.js",
"migration:rollback": "npm run build && typeorm migration:revert -d dist/dataSource.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenoitSerrano/manif.cool.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BenoitSerrano/manif.cool/issues"
},
"homepage": "https://github.com/BenoitSerrano/manif.cool#readme",
"dependencies": {
"config": "^3.3.9",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"js-sha256": "^0.9.0",
"pg": "^8.10.0",
"pg-connection-string": "^2.5.0",
"typeorm": "^0.3.12",
"typescript": "^5.0.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.5",
"@types/pg": "^8.6.6"
}
}