-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.47 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
{
"name": "cmyk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pm2 start ecosystem.config.js; pm2 logs",
"stop": "pm2 kill",
"test": "ava"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-resolver": "^1.1.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-graphql": "^0.8.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"react-hot-loader": "next",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.1.0"
},
"dependencies": {
"ava": "^0.19.1",
"babel-register": "^6.24.1",
"bcrypt": "^1.0.2",
"bookshelf": "^0.10.3",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"fetch-mock": "^5.11.0",
"graphql": "^0.10.1",
"graphql-server-koa": "^0.8.0",
"graphql-tools": "^1.0.0",
"history": "^4.6.1",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^7.4.1",
"knex": "^0.13.0",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^2.0.0",
"koa-router": "^7.2.0",
"koa-session": "^5.0.0",
"pg": "^6.2.2",
"pm2": "^2.4.6",
"polished": "^1.1.2",
"ramda": "^0.24.1",
"react": "^15.5.4",
"react-apollo": "^1.4.2",
"react-dom": "^15.5.4",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^6.7.0",
"redux-mock-store": "^1.2.3",
"redux-saga": "^0.15.3",
"reselect": "^3.0.1",
"styled-components": "2",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
},
"ava": {
"files": [
"./libs/**/__tests__/*-tests.js"
],
"verbose": true,
"source": [
"**/*.{js,jsx}"
],
"concurrency": 5,
"failFast": true,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}