-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.28 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
{
"name": "newapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "cd ./electron && npm i",
"start": "parcel -p 8080 ./src/index.html",
"build": "parcel build ./src/index.html --public-url ./",
"build-electron": "parcel build ./src/index.html --out-dir ./electron/dist --public-url ./ && cd ./electron && electron-packager ./ App --arch ia32 --platform win32 --out ../build/ --app-version 0.30.2 --overwrite --prune false",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Daniel Cunha",
"license": "MIT",
"dependencies": {
"@primer/octicons-react": "^9.1.1",
"@rocketseat/unform": "^1.5.1",
"moment": "^2.24.0",
"pouchdb": "^7.1.1",
"pouchdb-find": "^7.1.1",
"react": "^16.8.6",
"react-autocomplete": "^1.8.1",
"react-bulma-components": "^2.3.0",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"electron-packager": "^14.0.1",
"parcel-bundler": "^1.12.3"
}
}