forked from Agontuk/schema-designer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "schema-designer",
"version": "1.0.0",
"description": "Database schema designer for laravel & lumen",
"main": "src/main.js",
"scripts": {
"start": "node dev/server.js",
"build": "node_modules/webpack/bin/webpack.js --config dev/webpack/prod.conf.js",
"lint": "node_modules/eslint/bin/eslint.js src/",
"test": "jest"
},
"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",
"dependencies": {
"classnames": "^2.2.5",
"immutability-helper": "^2.1.1",
"jsplumb": "^2.2.10",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"reselect": "^2.5.4"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.26.0",
"jest": "^18.1.0",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^2.4.0"
}
}