-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "focalgg-backend",
"version": "0.1.0",
"description": "",
"main": "./build/src/server.js",
"scripts": {
"prestart": "npx knex migrate:latest",
"start": "node ./build/src/server.js",
"build": "npx tsc -b",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"test": "jest --colors",
"changelog": "auto-changelog -p"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.0",
"pg": "^8.7.1",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/knex": "^0.16.1",
"@types/uuid": "^8.3.1",
"auto-changelog": "^2.3.0",
"cross-env": "^7.0.3",
"jest": "^27.1.1",
"nodemon": "2.0.12",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"jest": {
"clearMocks": true,
"rootDir": "./_test",
"testEnvironmentOptions": {
"NODE_ENV": "test",
"PORT": 3333
},
"collectCoverage": true,
"coverageDirectory": "./coverage"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
}
}