-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "my_app",
"version": "1.0.0",
"description": "Describing your app",
"main": "index.js",
"scripts": {
"test": "mocha --opts mocha/mocha.opts 'src/**/__specs__/*-spec-jsx.js'",
"build": "node_modules/.bin/gulp",
"watch": "node_modules/.bin/gulp watch"
},
"repository": {
"type": "git",
"url": "https://github.com/company/repo.git"
},
"author": "Netengine 2015",
"license": "ISC",
"bugs": {
"url": "https://github.com/company/repo/issues"
},
"homepage": "https://github.com/company/repo",
"dependencies": {
"babel": "^5.1.13",
"browserify": "^10.2.4",
"envify": "^3.4.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-concat": "^2.5.2",
"gulp-inject": "^1.3.1",
"gulp-minify-css": "^1.1.6",
"gulp-sass": "^2.0.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.5",
"jsdom": "^3.1.2",
"lodash": "^3.9.3",
"mocha": "^2.2.5",
"react": "^0.13.3",
"react-router": "^0.13.3",
"react-tools": "^0.13.3",
"reactify": "^1.1.1",
"run-sequence": "^1.1.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}