-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "meeting-notes-manager",
"version": "0.0.0",
"description": "Meeting notes management application based from @Ericlathrop's Boilerplate SPA with React, Redux, Immutable, Babel, Eslint, & Mocha",
"main": "lib/index.js",
"scripts": {
"dev-install":"tsd install",
"build": "webpack",
"watch": "webpack --watch",
"start": "node api.js & webpack-dev-server --hot --inline --content-base public --port 4000",
"test": "mocha --compilers js:babel-core/register --require ./test/test-helper.js --recursive",
"test-watch": "npm test -- --watch"
},
"author": "Barry Rowe <[email protected]> (http://roaringcatgames.com)",
"license": "MIT",
"devDependencies": {
"autoprefixer-loader": "3.1.0",
"babel-core": "6.2.1",
"babel-loader": "6.2.0",
"babel-preset-es2015": "6.1.18",
"babel-preset-react": "6.1.18",
"body-parser": "^1.12.0",
"chai": "3.4.1",
"chai-immutable": "1.5.3",
"css-loader": "0.23.0",
"eslint": "1.10.2",
"eslint-loader": "1.1.1",
"eslint-plugin-react": "3.11.1",
"express": "^4.11.2",
"extract-text-webpack-plugin": "0.9.1",
"mocha": "2.3.4",
"mysql": "^2.5.4",
"node-sass": "3.4.2",
"request": "^2.51.0",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"tsd": "latest",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"dependencies": {
"history": "1.13.1",
"immutable": "3.7.5",
"react": "0.14.3",
"react-dom": "0.14.3",
"react-redux": "4.0.0",
"react-router": "1.0.0",
"redux": "3.0.4",
"redux-thunk": "1.0.0",
"request" : "^2.51.0"
}
}