-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
{
"name": "slashgo-server",
"version": "0.0.1",
"description": "Open-source org-wide shared shortlink manager",
"main": "server.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npx tsc && cp -r config dist/ && cp -r templates dist/",
"start": "node dist/server.js",
"predev": "mkdir -p dist/templates && cp -r templates/* dist/templates/ && mkdir -p dist/config && cp -r config/* dist/config/",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\"",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo:all",
"seed:all": "npx sequelize-cli db:seed:all",
"pretest": "mkdir -p dist/config && cp -r config/* dist/config/ && NODE_ENV=test npm run migrate:undo && NODE_ENV=test npm run migrate:up && NODE_ENV=test npm run seed:all",
"test": "jest --testTimeout=5000",
"posttest": "NODE_ENV=test npm run migrate:undo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Slash-Go/SlashGoServer.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Slash-Go/SlashGoServer/issues"
},
"homepage": "https://github.com/Slash-Go/SlashGoServer#README",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.13",
"@types/jest": "^29.1.2",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"concurrently": "^7.2.2",
"jest": "^29.1.2",
"nodemon": "^2.0.16",
"prettier": "^2.7.1",
"sequelize-cli": "^6.6.0",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.1",
"typescript": "^4.8.4",
"uuid": "^8.3.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"google-auth-library": "^8.6.0",
"nodemailer": "^6.8.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.0"
}
}