-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.3 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.3 KB
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
{
"name": "forest-express-sequelize",
"description": "Official Express/Sequelize Liana for Forest",
"version": "6.3.11",
"author": "Sandro Munda <sandro@munda.me>",
"contributors": [
"Arnaud Besnier <arnaudibesnier@gmail.com>",
"Lucas Scariot <scluckas@gmail.com>",
"Arnaud Valensi <arnaud.valensi@gmail.com>"
],
"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",
"dependencies": {
"@babel/runtime": "7.10.1",
"bluebird": "2.9.25",
"core-js": "3.6.5",
"forest-express": "7.4.4",
"http-errors": "1.6.1",
"lodash": "4.17.19",
"moment": "2.28.0",
"semver": "5.4.1"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.1",
"@babel/plugin-proposal-optional-chaining": "7.10.1",
"@babel/plugin-transform-arrow-functions": "7.10.4",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.10.1",
"@babel/register": "7.10.1",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/travis-cli": "8.3.5",
"@forestadmin/devops": "2.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/jest": "26.0.9",
"babel-eslint": "10.0.3",
"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": "4.2.5",
"jest": "26.0.1",
"mysql2": "2.1.0",
"onchange": "6.0.0",
"pg": "7.10.0",
"semantic-release": "17.0.7",
"semantic-release-slack-bot": "1.6.2",
"sequelize": "5.21.3",
"sequelize-fixtures": "1.1.1",
"simple-git": "1.65.0"
},
"scripts": {
"build": "babel src --out-dir dist && echo '\n\\033[0;34m[+] \\033[0;32mBuild done\\033[0m'",
"build:watch": "onchange 'src/**/*.js' -i -- yarn build",
"lint": "./node_modules/eslint/bin/eslint.js .eslint-bin scripts src test",
"readme:update-coverage": "yarn test:coverage && node ./scripts/update-coverage.js",
"test": "jest",
"test:coverage": "jest --coverage"
}
}