-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
116 lines (116 loc) · 3.68 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "forest-express",
"description": "Official package for all Forest Express Lianas",
"version": "10.6.3",
"author": "Sandro Munda <[email protected]>",
"contributors": [
"Arnaud Besnier <[email protected]>",
"Lucas Scariot <[email protected]>",
"Arnaud Valensi <[email protected]>",
"Vincent Molinié <[email protected]>",
"Valentin Lamatte <[email protected]>",
"Raphaël Huchet <[email protected]>",
"Guillaume Gautreau <[email protected]>"
],
"license": "GPL-3.0",
"homepage": "http://www.forestadmin.com",
"keywords": [
"forest",
"admin",
"panel",
"interface"
],
"repository": {
"type": "git",
"url": "https://github.com/ForestAdmin/forest-express.git"
},
"main": "dist/index.js",
"dependencies": {
"@babel/runtime": "7.19.0",
"@forestadmin/context": "1.31.0",
"@forestadmin/forestadmin-client": "1.35.0",
"base32-encode": "1.1.1",
"bitwise-xor": "0.0.0",
"bluebird": "3.7.1",
"body-parser": "^1.20.1",
"compose-middleware": "5.0.1",
"cors": "2.8.5",
"csv-stringify": "5.6.5",
"express": "^4.18.2",
"express-jwt": "8.4.1",
"forest-ip-utils": "1.0.1",
"http-errors": "1.7.3",
"inflected": "2.0.4",
"ip-regex": "4.3.0",
"ipaddr.js": "2.0.0",
"jsonapi-serializer": "3.6.5",
"jsonwebtoken": "9.0.0",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.40",
"object-hash": "^3.0.0",
"openid-client": "4.2.0",
"otplib": "11.0.1",
"require-all": "3.0.0",
"semver": "6.3.1",
"superagent": "^8.0.6",
"uuid": "3.3.3",
"verror": "1.10.0",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.3",
"@babel/helper-skip-transparent-expression-wrappers": "7.18.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-classes": "7.19.0",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/plugin-transform-typescript": "7.19.3",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@babel/register": "7.18.9",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/express": "4.17.14",
"@types/express-jwt": "6.0.4",
"@types/jest": "29.1.1",
"@types/jsonwebtoken": "8.5.0",
"@types/object-hash": "^2.2.1",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"babel-jest": "29.1.2",
"eslint": "8.24.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.0",
"eslint-plugin-sonarjs": "0.15.0",
"husky": "7.0.4",
"jest": "29.1.1",
"jest-extended": "3.1.0",
"lint-staged": "12.3.7",
"nock": "13.5.0",
"semantic-release": "19.0.3",
"semantic-release-npm-deprecate-old-versions": "1.3.2",
"semantic-release-slack-bot": "3.5.2",
"sinon": "9.0.2",
"supertest": "4.0.2",
"typescript": "4.8.4"
},
"scripts": {
"build": "tsc && babel src -d dist --extensions '.ts,.js'",
"build:watch": "babel --source-maps inline --watch --extensions '.ts,.js' --out-dir dist src",
"lint": "./node_modules/eslint/bin/eslint.js src test",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "jest",
"test:coverage": "jest --coverage"
},
"resolutions": {
"semantic-release-slack-bot/**/micromatch": "^4.0.8"
}
}