-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
{
"name": "rsb3-nw",
"version": "1.0.0",
"main": "index.html",
"window": {
"title": "Title goes here",
"toolbar": false,
"width": 816,
"height": 624,
"icon": "icon.png"
},
"chromium-args": "--enable-logging=stderr",
"description": "React, Semantic, Browserify, and Babel boilerplate running in node-webkit.",
"scripts": {
"start": "nw",
"clean": "rm build/bundle.js",
"build": "browserify --external fs app/index.js -o build/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aggregate1166877/RSB3-NW"
},
"keywords": [
"RSB3-NW",
"react",
"semantic-ui-react",
"browserify",
"babel"
],
"author": "aggregate1166877",
"license": "MIT",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env",
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
]
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babelify": "^9.0.0",
"browserify": "^11.2.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"semantic-ui-react": "^0.87.3",
"nw": "^0.44.1-sdk"
},
"dependencies": {
"nw": "^0.44.1",
"semantic-ui-css": "^2.4.1"
}
}