-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "iroase-server",
"version": "0.0.1",
"main": "src/server.ts",
"author": "EmeraldSnorlax",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-useragent": "^1.0.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"@types/pg": "^8.6.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"nodemon": "^2.0.13",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"argon2": "^0.28.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-useragent": "^1.0.15",
"pg": "^8.7.1",
"pg-protocol": "^1.5.0",
"supertest": "^6.1.6"
},
"scripts": {
"dev": "yarn clean && yarn build && docker-compose up",
"prod": "yarn clean && yarn build && docker-compose up -d",
"test": "yarn clean && yarn build && docker-compose -f docker-compose.test.yml up --abort-on-container-exit --exit-code-from test",
"": "You shouldn't need to run these manually. Use the commands above instead.",
"clean": "docker image remove -f iroaseserver",
"build": "docker build .",
"build:js": "yarn tsc --project .",
"start": "node ./dist/server.js"
}
}