-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 941 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 941 Bytes
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
{
"name": "react-intro",
"version": "1.0.0",
"description": "An Introduction to ReactJS, maintained and amended by MontpellierJS Team",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify -t [ babelify --presets [ react es2015 ] ] ./src/index.js -o ./build/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MontpellierJS/react-intro.git"
},
"keywords": [
"tutorial",
"introduction"
],
"author": "MontpellierJS",
"license": "ISC",
"bugs": {
"url": "https://github.com/MontpellierJS/react-intro/issues"
},
"homepage": "https://github.com/MontpellierJS/react-intro#readme",
"dependencies": {
"react": "^0.14.6",
"react-dom": "^0.14.6"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"watchify": "^3.7.0"
}
}