-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "Fiddlings",
"version": "1.0.0-pre-4",
"description": "Fiddlings.app",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=development electron .",
"clean": "rm -rf ./Fiddlings-darwin-x64",
"build:js": "webpack --config config/webpack.config.js",
"build:copy": "cp src/templates/index.html index.html",
"package:macos": "build --macos --x64",
"package:all": "yarn run build:js && yarn run build:copy && yarn run package:macos"
},
"repository": {
"url": "git@github.com:priithaamer/Fiddlings.git",
"type": "git"
},
"author": "Priit Haamer <priit@haamer.ee>",
"license": "MIT",
"devDependencies": {
"babel-loader": "^6.2.8",
"babel-preset-stage-0": "^6.16.0",
"electron": "^1.4.4",
"electron-builder": "^8.6.0",
"eslint": "^3.10.2",
"flow-bin": "0.36",
"webpack": "2.1.0-beta.27",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"codemirror": "^5.20.2",
"eslint-plugin-flowtype": "^2.25.0",
"react": "^15.4.0",
"react-classset": "^0.0.2",
"react-dom": "^15.4.0",
"redux": "^3.6.0"
},
"dependencies": {
"uuid": "^3.0.1"
},
"eslintConfig": {
"extends": "./config/eslint.js"
},
"build": {
"appId": "com.priithaamer.Fiddlings",
"files": [
"**/*",
"!**/{.DS_Store,.babelrc,.git,.gitignore,.gitattributes,.editorconfig,.flowconfig,.yarn-metadata.json,npm-debug.log,.nyc_output,yarn.lock,.yarnclean,.yarn-integrity}",
"!README.markdown",
"!config${/*}",
"!doc${/*}",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,test,__tests__,tests,powered-test,example,examples,*.d.ts}",
"!**/node_modules/.bin",
"!**/._*",
"!src${/*}"
]
}
}