-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.57 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
{
"name": "igo2-api",
"version": "1.7.8",
"description": "Igo2 API",
"author": "IGO Community",
"license": "LiLiQ-R",
"main": "server.js",
"files": [
"build",
"package-lock.json",
"ecosystem.config.js"
],
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"start": "nodemon",
"build.dev": "rimraf build && npm run tsc && npm run copyConfigs",
"serve.dev": "node build/index.js",
"build.prod": "rimraf build && cross-env NODE_ENV=prod npm run tsc&&npm run copyConfigs",
"serve.prod": "cross-env NODE_ENV=prod node build/index.js",
"start.prod": "npm run build.prod && npm run serve.prod",
"copyConfigs": "copyfiles -u 1 ./src/configurations/*.json ./build",
"lint": "eslint -c .eslintrc.json --ext .ts src/**/*.ts",
"lint.fix": "eslint --fix -c .eslintrc.json --ext .ts src/**/*.ts",
"test": "npm run lint && npm run test.context",
"test.context": "npm run build.dev && rimraf igo-test.db && cross-env NODE_ENV=test tape ./build/context/*.test.js | tap-spec",
"initDB": "npm run build.dev && rimraf igo.db && node build/initDB.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"version": "npm run changelog && git add -A CHANGELOG.md",
"postversion": "git push --follow-tags",
"migrate": "cross-env NODE_ENV=prod node build/bin/migration.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infra-geo-ouverte/igo2-api.git"
},
"homepage": "https://github.com/infra-geo-ouverte/igo2-api#readme",
"dependencies": {
"@igo2/base-api": "^1.2.3",
"activedirectory": "^0.7.2",
"axios": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"rxjs": "^7.4.0",
"sqlite3": "^5.1.6",
"ts-cacheable": "^1.0.9",
"ts-md5": "^1.3.1",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/hapi__hapi": "^20.0.13",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.9",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"conventional-changelog-cli": "^2.1.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^2.0.0",
"nodemon": "^2.0.20",
"openapi-types": "^12.0.2",
"rimraf": "^3.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.6.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=16.19.0"
}
}