-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.02 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
{
"name": "noam",
"version": "0.2.0",
"description": "Note taking app build with Electron.",
"homepage": "https://github.com/zakarhino/noam",
"main": "index.js",
"scripts": {
"start": "electron public/index.js",
"start:hot": "cross-env HOT=1 NODE_ENV=development electron public/index.js",
"start:hot:devtools": "cross-env HOT=1 NODE_ENV=development DEV_TOOLS=1 electron public/index.js",
"build": "webpack -p --progress",
"dev": "node devServer.js",
"test": "xo --fix",
"package": "cp package.json public; electron-packager ./public noam --platform=darwin --arch=x64 --out=./built --version=1.2.2 --overwrite"
},
"author": {
"name": "Zak Golding",
"email": "[email protected]",
"url": "https://github.com/zakarhino"
},
"license": "WTFPL",
"dependencies": {
"core-js": "^2.4.1",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"draft-js": "^0.7.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^0.30.0",
"lodash": "^4.13.1",
"postcss-loader": "^0.9.1",
"react": "^15.2.1",
"react-contextmenu": "^1.6.2",
"react-dom": "^15.2.1",
"react-hot-loader": "^3.0.0-beta.2",
"react-input-autosize": "^1.1.0",
"react-redux": "^4.4.5",
"react-split-pane": "^0.1.43",
"redux": "^3.5.2",
"redux-devtools-inspector": "^0.7.1",
"redux-promise": "^0.5.3",
"style-loader": "^0.13.1",
"transit-immutable-js": "^0.6.0",
"transit-js": "^0.8.846",
"ts-loader": "^0.8.2",
"uuid": "^2.0.2",
"webpack": "^1.13.1",
"webpack-target-electron-renderer": "^0.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"electron-prebuilt": "^1.2.7",
"enzyme": "^2.4.1",
"karma": "^1.1.1",
"mocha": "^2.5.3",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-logger": "^2.6.1",
"typescript": "^1.8.10",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.1"
}
}