-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.79 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@openforis/arena-server",
"author": {
"name": "OpenForis",
"email": "[email protected]"
},
"version": "0.1.38",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@machinomy/types-node-db-migrate": "^0.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/connect-pg-simple": "^7.0.3",
"@types/db-migrate-base": "^0.0.14",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.5.5",
"@types/lodash.throttle": "^4.1.9",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.49.0",
"husky": "8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"@openforis/arena-core": "^1.0.6",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-pg-simple": "^10.0.0",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-session": "^1.17.2",
"lodash.throttle": "^4.1.1",
"log4js": "^6.9.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg-promise": "^11.9.1",
"socket.io": "^4.8.0"
},
"scripts": {
"build": "run-s tsc copy-assets",
"clean": "rimraf dist ./node_modules/.cache/",
"copy-assets": "copyfiles -u 1 src/**/*.sql dist/",
"dbmigrate:create": "ts-node src/db/dbMigrator/migration/create.ts",
"format": "prettier --write \"src/**/*.+(ts|js|jsx|json|yml|yaml|css|md|vue)\"",
"jest": "jest --detectOpenHandles",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "run-s build && husky install",
"test": "run-s clean tsc:test copy-assets jest",
"test:watch": "run-s clean tsc:test copy-assets \"jest --watchAll\"",
"tsc": "tsc",
"tsc:test": "tsc --project tsconfig.test.json",
"tsc:watch": "tsc --watch"
},
"files": [
"dist/**/*"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"**/*.{js,ts,json,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openforis/arena-server.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/openforis/arena-server/issues"
},
"homepage": "https://github.com/openforis/arena-server#readme"
}