-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
{
"name": "expo",
"version": "1.0.0",
"description": "personal project",
"main": "index.js",
"scripts": {
"build": "npm run build:assets && npm run build:ui",
"build:assets": "gulp",
"build:ui": "mkdir -p './tmp/' && browserify --transform babelify --entry './ui/index.jsx' --outfile './tmp/index.js'",
"lint": "eslint './ui/'",
"test": "mocha --compilers js:babel-register './ui/**/test.js'",
"start": "node app/index.js",
"watch": "npm-run-all --parallel watch:build watch:lint watch:test start",
"watch:build": "mkdir -p './tmp/' && npm-run-all --parallel watch:build:ui watch:build:assets",
"watch:build:ui": "watchify --transform babelify --entry './ui/index.jsx' --outfile './tmp/index.js'",
"watch:build:assets": "gulp watch",
"watch:lint": "chokidar './ui/' --initial --command 'npm run lint --silent'",
"watch:test": "chokidar './ui/' --initial --command 'npm run test --silent'"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
],
"author": "patricia realini",
"license": "UNLICENSED",
"engines": {
"node": "5.10.1",
"npm": "3.8.3"
},
"dependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"faker": "^3.1.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-sass": "^2.2.0",
"hapi": "^13.3.0",
"inert": "^3.2.0",
"moment": "^2.13.0",
"normalize.css": "^4.1.1",
"radium": "^0.17.1",
"ramda": "^0.21.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^6.0.3",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chokidar-cli": "^1.2.0",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.0.1",
"mocha": "^2.4.5",
"npm-run-all": "^1.8.0",
"redux-logger": "^2.6.1",
"watchify": "^3.7.0"
}
}