-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.96 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
{
"private": true,
"config": {
"MOCHA_OPTS": "-R dot --timeout 20000 -r jsdom-global/register {modules,src}/{,**/}**/__tests__/*.spec.js"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"include": [
"src/**",
"modules/**"
]
},
"scripts": {
"lint": "eslint ./ --fix",
"build": "rm -rf public && webpack",
"mocha": "BABEL_DISABLE_CACHE=1 BABEL_ENV=test mocha --compilers .:babel-core/register $npm_package_config_MOCHA_OPTS",
"coverage": "BABEL_DISABLE_CACHE=1 BABEL_ENV=test nyc --reporter=lcov --reporter=text --require babel-core/register mocha $npm_package_config_MOCHA_OPTS",
"test": "npm run lint && npm run mocha",
"release": "NODE_ENV=production npm run build",
"dev": "SOURCE_MAP=1 webpack-browser-sync --hot --historyApiFallback --index ../index.html"
},
"devDependencies": {
"@morlay/babel-preset": "1.1.x",
"@morlay/eslint-config": "1.0.x",
"@morlay/tests-react": "1.1.x",
"autoprefixer-stylus": "0.10.x",
"babel-loader": "6.2.x",
"babel-plugin-istanbul": "2.0.x",
"babel-plugin-module-alias": "1.6.x",
"babel-plugin-system-import-transformer": "2.3.x",
"babel-plugin-webpack-loaders-inline-exports": "0.2.x",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.x",
"config": "1.21.x",
"css-loader": "0.25.x",
"eslint-import-resolver-babel-module-alias": "1.5.x",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "0.9.x",
"html-webpack-plugin": "2.22.x",
"nyc": "8.1.x",
"react-hot-loader": "3.0.0-beta.3",
"simplify-svg-loader": "1.0.x",
"style-loader": "0.13.x",
"stylus": "0.54.x",
"stylus-loader": "2.3.x",
"svg2jsx": "0.1.x",
"url-loader": "0.5.x",
"webpack": "2.1.0-beta.21",
"webpack-browser-sync": "0.2.x"
},
"dependencies": {
"babel-runtime": "6.11.x",
"classnames": "2.2.x",
"normalize.css": "4.2.x",
"react": "15.3.x",
"react-dom": "15.3.x"
}
}