-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "github-stream-filter",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "babel-node scripts/devServer.js",
"check:lib": "npm-check",
"lint": "esw webpack.config.* scripts/devServer.js src --color",
"lint:watch": "npm run lint -- --watch",
"pretest:typecheck": "flow",
"pretest": "npm run lint && npm run pretest:typecheck",
"test": "mocha --reporter progress --compilers js:babel-core/register src/**/*.spec.js",
"test:watch": "npm run test -- --watch --watch-extensions jsx"
},
"author": "trungutt",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"eslint-watch": "^2.1.14",
"flow-bin": "^0.38.0",
"npm-check": "^5.4.0",
"react-hot-loader": "^1.3.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"chai": "^3.5.0",
"express": "^4.14.1",
"mocha": "^3.2.0",
"open": "^0.0.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.16.1"
}
}