-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 KB
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": "recipes-note",
"version": "1.0.0",
"description": "recipes note",
"scripts": {
"prestart": "babel-node scripts/startMessage.js",
"start": "npm-run-all --parallel serve security-check lint:watch test:watch",
"serve": "webpack-dev-server",
"lint": "esw webpack.config.* src scripts --color",
"lint:watch": "npm run lint -- --watch",
"test": "_mocha --compilers js:babel-core/register --require scripts/testSetup.js \"src/**/*.spec.js\"",
"test:watch": "npm run test -- --watch --watch-extensions jsx",
"security-check": "nsp check",
"flow": "flow",
"flow:watch": "flow-watch"
},
"author": "trungutt",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.0.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",
"flow-watch": "^1.1.0",
"npm-run-all": "^4.0.1",
"nsp": "^2.6.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"chalk": "^1.1.3",
"fetch-mock": "^5.9.3",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.10.0",
"mocha": "^3.2.0",
"normalizr": "^3.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"uuid": "^3.0.1"
}
}