-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
77 lines (77 loc) · 2.41 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
{
"name": "forest-express-mongoose",
"description": "Official Express/Mongoose Liana for Forest",
"version": "9.4.2",
"author": "Sandro Munda <[email protected]>",
"contributors": [
"Arnaud Besnier <[email protected]>",
"Vincent Molinié <[email protected]>",
"Lucas Scariot <[email protected]>",
"Chris Lahaye <[email protected]>"
],
"license": "GPL-3.0",
"homepage": "http://www.forestadmin.com",
"keywords": [
"forest",
"admin",
"panel",
"interface",
"mongoose"
],
"repository": {
"type": "git",
"url": "git://github.com/ForestAdmin/forest-express-mongoose.git"
},
"main": "dist/index.js",
"types": "./types/index.d.ts",
"dependencies": {
"@babel/runtime": "7.15.4",
"bluebird": "2.9.25",
"forest-express": "10.4.0",
"http-errors": "1.7.2",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.40",
"semver": "5.7.2"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.4",
"@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.13",
"@types/jest": "26.0.13",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.4",
"eslint-plugin-sonarjs": "0.5.0",
"husky": "7.0.4",
"jest": "29.1.1",
"jest-extended": "3.1.0",
"lint-staged": "12.3.7",
"mongoose": "7.5.0",
"mongoose-fixture-loader": "1.0.2",
"semantic-release": "19.0.3",
"semantic-release-npm-deprecate-old-versions": "1.3.2",
"semantic-release-slack-bot": "3.5.2",
"typescript": "4.3.3"
},
"scripts": {
"build": "babel --out-dir dist src",
"build:watch": "babel --watch --source-maps inline --out-dir dist src",
"lint": "./node_modules/eslint/bin/eslint.js src test types/index.d.ts --ext '.js'",
"prepare": "husky install",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage --collectCoverageFrom=\"src/**/*.{ts,js}\""
}
}