-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 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": "fair-journal-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepublishOnly": "rimraf dist && npm run compile:types && npm run compile:node --env mode=production",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "ts-node src/index.ts",
"test": "jest --runInBand",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"check:types": "tsc --project tsconfig.test.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.1.0",
"@types/supertest": "^2.0.12",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"babel-jest": "^29.6.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.6.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"supertest": "^6.3.3",
"ton-crypto": "^3.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@fairjournal/file-system": "^1.10.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"knex": "^2.4.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.5.1",
"sharp": "^0.32.1",
"tmp": "^0.2.1",
"tonstorage-cli": "^1.1.5",
"uuid": "^9.0.0"
}
}