-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "san-embed-proxy",
"author": "Santiment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/server.js",
"dev": "nodemon index.js",
"build": "tsc -p . && cp package.json ./build/package.json && cp package-lock.json ./build/package-lock.json && cp .env ./build/.env",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"pretty": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"precommit": "npm run lint-fix && npm run pretty",
"prepush": "npm run lint ",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"typescript": "^5.3.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.11",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
}
}