-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "react-tutorial",
"version": "0.0.0",
"private": true,
"license": "see LICENSE file",
"description": "Customized React tutorial comment box",
"main": "server.rb",
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"body-parser": "^1.4.3",
"browserify": "^13.1.0",
"browserify-css": "^0.9.2",
"muicss": "^0.6.9",
"react": "^15.2.1",
"react-dom": "^15.2.1"
},
"browserify": {
"transform": [["babelify", { "presets": ["es2015", "react"] }]]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ruby server.rb",
"bundle": "browserify public/scripts/tutorial1.js -o public/scripts/bundle.js -t browserify-css"
},
"repository": {
"type": "git",
"url": "https://github.com/kmabrahamson/react-tutorial.git"
},
"keywords": [
"react",
"tutorial",
"comment",
"example"
],
"author": "kmabrahamson",
"bugs": {
"url": "https://github.com/kmabrahamson/react-tutorial/issues"
},
"engines": {
"node": "0.12.x"
}
}