forked from tomjschuster/sequelize-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.22 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
{
"name": "sequelize-ui",
"version": "0.1.0",
"description": "GUI for designing relational database schema and exporting as formatted Sequlize template.",
"homepage": "http://sequelizeui.herokuapp.com",
"bugs": {
"url": "https://github.com/tomjschuster/sequelize-ui/issues",
"email": "[email protected]"
},
"license": "ISC",
"author": "Tom Schuster <[email protected]> (https://github.com/tomjschuster)",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tomjschuster/sequelize-ui"
},
"scripts": {
"build:dev": "rimraf dist && NODE_ENV=development webpack",
"build:prod": "rimraf dist && NODE_ENV=production webpack",
"start": "npm run build:dev && NODE_ENV=development live-server ./dist & npm run build:dev -- --watch"
},
"keywords": [
"sequelize",
"orm",
"sql",
"schema",
"model",
"gui"
],
"browserslist": [
"defaults"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"Blob",
"localStorage",
"location"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"autoprefixer": "^9.5.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-plugin-prismjs": "^1.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"case": "^1.5.4",
"copy-to-clipboard": "^3.1.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^2.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"file-saver": "^1.3.3",
"html-webpack-plugin": "^3.0.4",
"inflection": "^1.12.0",
"jszip": "^3.1.5",
"live-server": "^1.2.1",
"postcss-loader": "^3.0.0",
"prismjs": "^1.16.0",
"prop-types": "^15.7.2",
"react": "^16.3.2",
"react-dom": ">=16.3.3",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^3.10.0",
"webpack-merge": "^3.0.0",
"xregexp": "^4.2.4"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"prettier": "^1.13.4",
"standard": "^11.0.0"
},
"engines": {
"node": ">=6.0.0 < 12.0"
}
}