-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.75 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "app-hack-build",
"version": "1.0.0",
"description": "app-hack-build",
"main": "index.js",
"scripts": {
"build": "env NODE_ENV=production webpack --config webpack.config.prod.js -p",
"coverage": "nyc npm test",
"lint:fix": "eslint src --fix",
"lint": "eslint src",
"mocha:json": "env NPM_ENV=test mocha --reporter json > coverage/mocha.json",
"precommit": "lint-staged",
"start": "webpack-dev-server --config webpack.config.dev.js --port 3000 --history-api-fallback",
"test": "mocha",
"test:watch": "mocha -w -R mocha-multi --reporter-options spec=-,mocha-osx-reporter=-"
},
"keywords":[
"zooid",
"zooid-app",
"react",
"babel",
"webpack"
],
"homepage": "https://github.com/virgilvox/app-hack-build",
"bugs": "https://github.com/virgilvox/app-hack-build/issues",
"author": {
"name": "virgilvox",
"url": "https://github.com/virgilvox"
},
"repository": {
"type": "git",
"url": "https://github.com/virgilvox/app-hack-build.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"css-loader": "^0.28.5",
"debug": "^3.0.0",
"env-test": "^1.0.0",
"emotion": "^7.2.0",
"eslint": "^4.5.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"html-webpack-inline-source-plugin": "^0.0.9",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.2.0",
"lint-staged": "^4.0.3",
"mocha": "^3.5.0",
"mocha-multi": "^0.11.0",
"mocha-osx-reporter": "^0.1.2",
"nyc": "^11.1.0",
"prettier": "^1.5.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-act": "^1.3.2",
"redux-logger": "^3.0.6",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"style-loader": "^0.18.2",
"suitcss-base": "^3.0.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"nyc": {
"include": [
"src"
],
"exclude": [
"src/**/*.spec.js",
"src/**/*.css"
],
"cache": true,
"reporter": [
"text-summary",
"lcov",
"json"
],
"require": [
"babel-core/register"
]
}
}