-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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": "microblog-react",
"version": "1.0.0",
"main": "src/index.js",
"author": "Tribu WebF",
"license": "MIT",
"scripts": {
"clean": "rimraf dist && mkdir dist",
"start": "webpack-dev-server --progress --inline --hot --quiet --colors --open",
"lint": "eslint src/**/*.js --fix",
"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",
"watch": "npm run mocha -- --watch",
"build": "npm run clean && webpack -p",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"css-loader": "0.26.1",
"enzyme": "^2.5.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.4.1",
"fetch-mock": "5.8.1",
"gh-pages": "^0.12.0",
"history": "^3.0.1",
"html-webpack-plugin": "^2.22.0",
"ignore-styles": "5.0.1",
"jsdom": "^9.6.0",
"jsdom-global": "^2.1.0",
"mocha": "^3.1.2",
"mock-local-storage": "^1.0.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-fontawesome": "^1.5.0",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"rimraf": "^2.6.1",
"sinon": "1.17.7",
"style-loader": "0.13.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
}
}