-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
{
"name": "repatch-example-electron-app",
"version": "0.0.1",
"description": "Todo electron app to representing repatch",
"main": "lib/main",
"scripts": {
"babel": "babel src -d lib",
"babel:w": "babel src -d lib -w",
"build": "rm -rf lib && npm run babel",
"build:w": "npm run babel:w",
"start": "electron lib/main",
"start-prod": "NODE_ENV=production npm start",
"test": "jest",
"test:w": "jest --watch"
},
"authors": [
"Péter Hauszknecht <[email protected]> (https://github.com/jayhasyee)"
],
"keywords": [
"dispatch",
"redux",
"reducer",
"state",
"predictable",
"functional",
"immutable",
"flux"
],
"repository": {
"type": "git",
"url": "https://github.com/jaystack/repatch-example-electron-app.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jaystack/repatch-example-electron-app/issues"
},
"dependencies": {
"electron": "^1.7.6",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"repatch": "^1.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"jest": "^21.2.1"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testMatch": [
"**/test/**/*.spec.js"
],
"testEnvironment": "node"
}
}