-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.9 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
{
"name": "formation-react-microblog",
"version": "1.0.0",
"description": "microblog React",
"main": "index.js",
"repository": {
"url": "[email protected]:octo-web-front-end-tribe/formation-react-microblog.git",
"type": "git"
},
"author": "tribu web front <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf public && mkdir public",
"build": "npm run clean && webpack -p",
"start": "webpack-dev-server --progress --inline --hot --quiet --colors --open",
"lint": "eslint --fix src/**/*.js",
"mocha": "mocha --reporter spec --compilers js:babel-register -r ignore-styles -r jsdom-global/register -r mock-local-storage --recursive 'src/**/*.spec.js'",
"test": "npm run lint & npm run mocha",
"test-watch": "npm run mocha -- --watch"
},
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"chai-enzyme": "^0.8.0",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"html-webpack-plugin": "^2.29.0",
"ignore-styles": "^5.0.1",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"mock-local-storage": "^1.0.3",
"nock": "^9.0.14",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-test-renderer": "^15.6.1",
"redux": "^3.7.2",
"rimraf": "^2.6.1",
"sinon": "^2.3.8",
"sinon-chai": "^2.12.0",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
}
}