forked from este/este
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.69 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
{
"name": "este",
"private": true,
"engines": {
"node": ">= 8.0.0"
},
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "cross-env NODE_ENV=production node server.js",
"deploy": "node ./scripts/deploy",
"extract-messages": "yarn clean-babel-cache && rimraf lang/.messages && next build && node ./scripts/extractMessages",
"favicon": "node ./scripts/favicon",
"flow": "flow",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier": "prettier --single-quote --trailing-comma all --write '{components,lib,mutations,pages,reducers,scripts,test,themes,types}/**/*.js'",
"clean-babel-cache": "rimraf node_modules/.cache/babel-loader",
"test": "flow && jest && yarn build",
"deps": "rimraf node_modules yarn.lock flow-typed && yarn && flow-typed install",
"analyze": "cross-env ANALYZE=1 next build",
"relay": "rimraf **/__generated__ && relay-compiler --src ./ --exclude **/.next/** **/flow-typed/** **/node_modules/** **/test/** **/__generated__/** --schema data/schema.graphql",
"relay:watch": "yarn relay -- --watch",
"schema": "graphql get-schema dev"
},
"dependencies": {
"accepts": "^1.3.3",
"babel-plugin-react-intl": "^2.3.1",
"color": "^2.0.0",
"cookie": "^0.3.1",
"cross-env": "^5.0.1",
"diacritics-map": "^0.1.0",
"glob": "^7.1.2",
"gravatar": "^1.6.0",
"intl": "^1.2.5",
"isomorphic-fetch": "^2.2.1",
"next": "^4.0.0-beta.2",
"nprogress": "^0.2.0",
"prop-types": "^15.6.0",
"raf": "^3.3.2",
"ramda": "^0.24.1",
"raven": "^2.1.1",
"raven-js": "^3.17.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-intl": "^2.3.0",
"react-redux": "^5.0.3",
"react-relay": "^1.2.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"relay-runtime": "^1.2.0",
"rimraf": "^2.6.2",
"rxjs": "^5.4.0",
"smoothscroll-polyfill": "^0.4.0",
"url-parse": "^1.1.9",
"url-search-params": "^0.10.0",
"validator": "^9.0.0",
"webpack-bundle-analyzer": "^2.8.2"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-relay": "^1.2.0",
"babel-plugin-transform-define": "^1.2.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.7.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.56.0",
"flow-typed": "^2.1.5",
"graphql-cli": "^1.0.1",
"jest": "^21.2.1",
"prettier": "^1.5.1",
"react-test-renderer": "^16.0.0",
"relay-compiler": "^1.2.0"
}
}