-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.92 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
{
"name": "leveladmin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-logger": "^2.7.4"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.18.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"devtron": "^1.3.0",
"electron": "^1.4.10",
"electron-builder": "^10.4.1",
"electron-devtools-installer": "^2.0.1",
"eslint": "^3.11.1",
"eslint-plugin-react": "^6.7.1",
"node-sass": "^3.13.0",
"react-hot-loader": "^1.3.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.27",
"webpack-async-await": "^1.1.0",
"webpack-dev-server": "^2.1.0-beta.12",
"webpack-merge": "^1.0.2"
},
"build": {
"appId": "com.cosmosgenius.leveladmin",
"category": "public.app-category.developer-tools",
"asar": false
},
"scripts": {
"dev": "cross-env HOT=1 NODE_ENV=development webpack-dev-server",
"lint": "eslint .",
"build": "cross-env NODE_ENV=production webpack",
"test": "npm run lint",
"start": "cross-env HOT=1 NODE_ENV=development electron app",
"postinstall": "install-app-deps",
"pack": "npm run build && build --dir && babel --no-comments --compact --minified --out-file app/dist/bundle.js app/dist/bundle.js",
"dist": "npm run build && build",
"release": "npm run build && build --publish=onTagOrDraft"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmosgenius/leveladmin.git"
},
"author": "Sharat M R",
"license": "MIT",
"bugs": {
"url": "https://github.com/cosmosgenius/leveladmin/issues"
},
"homepage": "https://github.com/cosmosgenius/leveladmin#readme"
}