-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.51 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
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
{
"name": "default-project",
"version": "1.0.0",
"description": "default blueprint to kickstart FE projects",
"repository": "git@github.com:WideEyesTech/we-default-project.git",
"main": "src/index.js",
"scripts": {
"test": "CONFIG=$(pwd)/configs/webpack.ava.js NODE_ENV=AVA BABEL_DISABLE_CACHE=1 ava | tap-spec",
"test:watch": "CONFIG=$(pwd)/configs/webpack.ava.js NODE_ENV=AVA BABEL_DISABLE_CACHE=1 ava --watch",
"start": "rimraf dist && webpack-dev-server --config configs/webpack.dev.js --inline --progress --port 3000",
"build": "rimraf dist && webpack --config configs/webpack.production.js --progress --profile --bail --release"
},
"author": "Gerard Clos",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.7",
"ava": "^0.18.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.26.1",
"enzyme": "^2.4.1",
"eslint": "^3.11.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"jsdom": "^9.8.3",
"nock": "^9.0.2",
"postcss-loader": "^1.2.0",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.2.1",
"redux-mock-store": "^1.1.2",
"rimraf": "^2.5.3",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"tap-dot": "^1.0.5",
"tap-spec": "^4.1.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^1.0.2",
"webpack-validator": "^2.2.3"
},
"dependencies": {
"classnames": "^2.2.5",
"es6-promise": "^4.0.5",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^5.0.0",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-actions": "^1.1.0",
"redux-auth-wrapper": "^1.1.0",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^2.0.1",
"wideeyes-ui": "^2.4.4"
},
"standard": {
"parser": "babel-eslint"
},
"ava": {
"require": [
"babel-register",
"./configs/testSetup"
],
"files": [
"src/components/**/test/*.js",
"src/reducers/test/*.js",
"src/actions/test/*.js"
],
"babel": {
"babelrc": true
},
"concurrency": 5,
"failFast": true,
"tap": true
}
}