-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "postit",
"version": "0.0.1",
"description": "postit todo list",
"main": "index.js",
"dependencies": {
"idb": "^1.1.4",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.11.6",
"cross-env": "^2.0.0",
"electron-builder": "^5.24.1",
"electron-prebuilt": "^1.3.3",
"eslint": "^3.2.2",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^1.3.0",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"webpack": "^2.1.0-beta.20",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-merge": "^0.14.1"
},
"build": {
"productName": "PostIt Todo",
"appId": "com.Praseetha-KR.postit",
"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/Praseetha-KR/postit.git"
},
"author": "Praseetha KR",
"license": "MIT",
"bugs": {
"url": "https://github.com/Praseetha-KR/postit/issues"
},
"homepage": "https://github.com/Praseetha-KR/postit#readme"
}