-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
66 lines (66 loc) · 1.58 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
{
"name": "schema-designer",
"version": "2.0.0",
"description": "Database schema designer for laravel & lumen",
"keywords": [
"database",
"schema",
"design",
"laravel",
"lumen"
],
"author": {
"name": "Iftekhar Rifat",
"email": "[email protected]",
"url": "https://github.com/Agontuk"
},
"repository": {
"type": "git",
"url": "https://github.com/Agontuk/schema-designer.git"
},
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"cross-env CI=true yarn test --bail --findRelatedTests",
"git add"
]
},
"dependencies": {
"classnames": "^2.2.5",
"immutability-helper": "^2.7.0",
"jsplumb": "2.2.10",
"lodash": "^4.17.10",
"react": "^16.4.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.0",
"react-hot-loader": "^4.2.0",
"react-redux": "^5.0.7",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^20.0.3",
"cross-env": "^5.1.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.73.0",
"husky": "^0.14.3",
"jest": "^20.0.3",
"lint-staged": "^7.1.3"
}
}