-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
86 lines (86 loc) · 2.69 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
{
"name": "forest-express-sequelize",
"description": "Official Express/Sequelize Liana for Forest",
"version": "9.5.2",
"author": "Sandro Munda <[email protected]>",
"contributors": [
"Arnaud Besnier <[email protected]>",
"Lucas Scariot <[email protected]>",
"Arnaud Valensi <[email protected]>",
"Vincent Molinié <[email protected]>"
],
"license": "GPL-3.0",
"homepage": "http://www.forestadmin.com",
"keywords": [
"forest",
"admin",
"panel",
"interface",
"sequelize"
],
"repository": {
"type": "git",
"url": "git://github.com/ForestAdmin/forest-express-sequelize.git"
},
"main": "dist/index.js",
"types": "./types/index.d.ts",
"dependencies": {
"@babel/runtime": "7.15.4",
"bluebird": "2.9.25",
"core-js": "3.6.5",
"forest-express": "10.6.0",
"http-errors": "1.6.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"semver": "5.7.2"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-arrow-functions": "7.14.5",
"@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.9",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"eslint": "6.8.0",
"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",
"mysql2": "3.9.8",
"onchange": "6.0.0",
"pg": "8.4.2",
"semantic-release": "19.0.3",
"semantic-release-npm-deprecate-old-versions": "1.3.2",
"semantic-release-slack-bot": "3.5.2",
"sequelize": "6.29.0",
"sequelize-fixtures": "1.1.1",
"tedious": "15.1.3",
"typescript": "4.3.2"
},
"scripts": {
"build": "babel src --out-dir dist",
"build:watch": "onchange 'src/**/*.js' 'node_modules/forest-express/dist/*' --no-exclude -i -- babel --source-maps inline --out-dir dist src",
"lint": "./node_modules/eslint/bin/eslint.js src test types/index.d.ts",
"prepare": "husky install",
"test": "jest",
"test:coverage": "jest --coverage"
},
"resolutions": {
"semantic-release-slack-bot/**/micromatch": "^4.0.8"
}
}