-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
60 lines (60 loc) · 1.85 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
53
54
55
56
57
58
59
60
{
"name": "react-browserify-spa-seed",
"version": "0.0.1",
"description": "Seed project for React, Browserify, Rework SPAs",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:mgonto/react-browserify-spa-seed.git"
},
"authors": [
"Martin Gontovnikas <[email protected]> (http://gon.to/)"
],
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"start": "npm run build && serve .",
"build": "npm run build-js && npm run build-css",
"watch": "npm run watch-js & npm run watch-css & serve .",
"test": "npm run lint -s && npm run build",
"build-css": "rework-npm index.css | cleancss -o build/build.css",
"build-js": "browserify --extension=.jsx --extension=.js src/app.jsx | uglifyjs > build/build.js",
"watch-js": "watchify --extension=.jsx --extension=.js src/app.jsx -o build/build.js --debug --verbose",
"watch-css": "nodemon -e css --ignore build/build.css --exec 'rework-npm index.css -o build/build.css'",
"lint-eslint": "eslint .",
"lint-jscs": "jscs .",
"lint": "npm run lint-eslint && npm run lint-jscs"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mgonto/react-browserify-spa-seed/issues"
},
"homepage": "https://github.com/mgonto/react-browserify-spa-seed",
"dependencies": {
"bootstrap": "^3.3.0",
"flux": "^2.0.1",
"jwt-decode": "^1.1.0",
"react": "^0.13",
"react-mixin": "^1.1.0",
"react-router": "^0.13.2",
"reqwest": "^1.1.5",
"when": "^3.7.2"
},
"devDependencies": {
"babelify": "^6.1.0",
"browser-sync": "^2.1.6",
"browserify": "^8.0.3",
"clean-css": "^3.1.9",
"eslint": "^0.14.1",
"nodemon": "^1.5.0",
"rework": "^1.0.1",
"rework-npm": "^1.0.0",
"rework-npm-cli": "^0.1.1",
"serve": "^1.4.0",
"uglify-js": "^2.4.15",
"watchify": "^2.1.1"
}
}