-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "retax-seed",
"version": "1.0.1",
"description": "<%= appName %> written with React",
"engines": {
"node": ">=5",
"npm": ">=3.3 <4"
},
"repository": {
"type": "git",
"url": "git+<%= repoUrl %>"
},
"keywords": [
"react",
"seed",
"retax",
"<%= appName %>"
],
"author": "<%= author %>",
"license": "MIT",
"bugs": {
"url": "<%= repoUrl %>/issues"
},
"homepage": "<%= repoUrl %>",
"scripts": {
"start": "builder concurrent frontend api",
"frontend": "DEBUG_COLORS=true DEBUG='<%= appName %>-*' builder run serve",
"api": "nodemon --watch api api/server.js 8000",
"build": "builder run build",
"tdd": "builder run test:all:watch",
"pretest": "builder run lint",
"test": "builder run test:all:coverage",
"lint": "builder run lint",
"release": "builder run release"
},
"dependencies": {
"builder-react-fullstack": "^0.3.1",
"classnames": "^2.2.3",
"cookie-parser": "^1.4.1",
"dateformat": "^1.0.12",
"debug": "^2.2.0",
"express": "^4.13.3",
"flux-standard-action": "^0.6.0",
"getenv": "^0.6.0",
"hoist-non-react-statics": "^1.0.3",
"immutable": "^3.8.0",
"keymirror": "^0.1.1",
"material-ui": "^0.15.0-beta.1",
"morgan": "^1.6.1",
"pure-render-decorator": "^1.1.0",
"radium": "^0.17.1",
"react": "^15.0.0",
"react-addons-perf": "^15.0.0",
"react-addons-shallow-compare": "^15.0.0",
"react-dom": "^15.0.0",
"react-helmet": "^3.0.1",
"react-redux": "^4.4.5",
"react-router": "^2.2.4",
"react-router-redux": "^4.0.2",
"react-tap-event-plugin": "^1.0.0",
"redial": "^0.4.1",
"redux": "^3.4.0",
"redux-form": "^5.0.1",
"redux-logger": "^2.3.1",
"redux-thunk": "^2.0.1",
"reflect-metadata": "^0.1.3",
"reselect": "^2.1.0",
"retax": "^1.1.0",
"retax-components": "^0.1.1",
"serve-favicon": "^2.3.0",
"warning": "^2.1.0",
"webpack-isomorphic-tools": "^2.2.26"
},
"devDependencies": {
"builder": "^2.8.0",
"builder-react-fullstack-dev": "^0.3.1",
"chai": "^3.4.1",
"cors": "^2.7.1",
"dirty-chai": "^1.2.2",
"enzyme": "^2.0.0",
"fetch-mock": "^4.0.0",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^9.0.0",
"jsdom-global": "^2.0.0",
"mockery": "^1.4.0",
"nodemon": "^1.9.1",
"react-addons-test-utils": "^15.0.0",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-mock-store": "1.0.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}