-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.16 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
{
"name": "reddux",
"version": "0.0.0",
"description": "A content reader for reddit",
"main": "index.js",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"test:src": "ava tests/{state,components,utils,api}/{**,**/**}/*_test.js",
"test:helpers": "ava tests/test-helpers/*_test.js",
"test:all": "npm run test:helpers && npm run test:src",
"test": "npm run test:src",
"start": "node index.js",
"clean": "rm -rf node_modules/ semantic-ui/dist/ public/build/",
"build:styles": "cd semantic-ui && gulp build",
"build:prod": "NODE_ENV=production node config/build.production.js",
"heroku-postbuild": "npm run build:styles && npm run build:prod"
},
"keywords": [],
"author": "Rafael Espinoza <[email protected]> (www.rafaelespinoza.com)",
"license": "ISC",
"devDependencies": {
"ava": "^0.17.0",
"cz-conventional-changelog": "^1.2.0",
"fetch-mock": "^5.5.0",
"redux-mock-store": "^1.2.1",
"sinon": "^1.17.6",
"webpack-dev-server": "^1.16.2",
"webpack-dotenv-plugin": "^1.4.0"
},
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"http-proxy": "^1.15.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"semantic-ui": "^2.2.6",
"semantic-ui-react": "^0.60.4",
"webpack": "^1.13.3"
},
"private": true,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"react",
"stage-1"
],
"sourceMaps": "inline"
},
"ava": {
"files": [
"tests/**/*_test.js"
],
"source": [
"!semantic-ui/**/*",
"src/*.{js,jsx}"
],
"concurrency": 5,
"failFast": false,
"tap": false,
"verbose": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}