-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "react-es6",
"version": "1.0.0",
"description": "React + Browserify + Babel = Future",
"main": "index.js",
"scripts": {
"start": "parallelshell \"npm run -s watch\" \"node server.js\"",
"watch": "watchify index.js -dv -t babelify -o public/bundle.js",
"build": "NODE_ENV=production browserify index.js -t babelify -g uglifyify -o public/bundle.js",
"test": "standard --verbose | snazzy"
},
"standard": {
"ignore": [
"public",
"server.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/klaemo/react-es6"
},
"keywords": [
"browserify",
"react",
"es6"
],
"author": "Clemens Stolle <klaemo@fastmail.fm>",
"license": "MIT",
"bugs": {
"url": "https://github.com/klaemo/react-es6/issues"
},
"homepage": "https://github.com/klaemo/react-es6",
"dependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3",
"marked": "^0.3.5",
"react": "~0.14.0",
"react-dom": "~0.14.0",
"whatwg-fetch": "^0.10.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babelify": "^7.2.0",
"browserify": "^12.0.0",
"parallelshell": "^2.0.0",
"snazzy": "^2.0.1",
"standard": "^5.3.1",
"uglifyify": "^3.0.1",
"watchify": "^3.4.0"
}
}