-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "react-talk",
"version": "1.0.1",
"description": "my talk",
"main": "src/main.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watchify": "watchify -v --debug -o build/app.js .",
"http-server": "http-server",
"browserify": "browserify --debug -o build/app.js .",
"prepublish": "mkdir -p build && npm run browserify"
},
"author": "Lukas Degener",
"license": "ISC",
"private": true,
"dependencies": {
"bluebird": "^3.5.0",
"tgol": "^0.2.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"http-server": "^0.9.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"request": "^2.81.0",
"watchify": "^3.9.0"
},
"browser": "src/main.jsx",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"react",
"es2015"
]
}
]
]
}
}