This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
115 lines (115 loc) · 2.82 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "relate",
"version": "0.0.16",
"author": "Sebastien Dubois",
"license": "GPL-3.0",
"main": "./server",
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"postinstall": "sh scripts/createDefaultConfig.sh",
"dev": "nodemon -w server -w universal -w yarn.lock -w next.config.js -w config.js -w package.json",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production node server",
"lint-staged": "lint-staged",
"deploy": "eslint . && now && now alias",
"bundle:analyze": "ANALYZE_BUNDLE=true yarn dev",
"bundle:view": "webpack-bundle-analyzer .next/stats.json"
},
"dependencies": {
"accept-language": "^3.0.15",
"auth0-lock": "^10.13.0",
"babel-plugin-transform-define": "^1.2.0",
"babel-preset-env": "^1.2.2",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-session": "^1.15.1",
"graphql-anywhere": "^3.0.1",
"isomorphic-fetch": "^2.2.1",
"jest-cli": "^19.0.2",
"lru-cache": "^4.0.2",
"next": "3.0.0-beta3",
"next-routes": "^1.0.20",
"nprogress": "^0.2.0",
"react": "^15.4.2",
"react-apollo": "1.0.0-rc.3",
"react-dom": "^15.4.2",
"react-ga": "^2.1.2",
"react-intl": "^2.2.3",
"react-no-ssr": "^1.1.0",
"react-player": "^0.14.3",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"session-file-store": "^1.0.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"lint-staged": "^3.4.0",
"node-fetch": "^1.6.3",
"nodemon": "^1.11.0",
"pre-commit": "^1.1.3",
"webpack-bundle-analyzer": "^2.3.1"
},
"babel": {
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
],
"next/babel"
]
}
},
"presets": [
"next/babel"
],
"plugins": [
[
"transform-define",
"./config.js"
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"globals": {
"document": true,
"window": true,
"process": true,
"fetch": false,
"ANALYTICS_TRACKING_ID": false,
"AUTH0_CLIENT_ID": false,
"AUTH0_DOMAIN": false,
"GRAPHQL_ENDPOINT": false,
"NEWSLETTER_FORM_ACTION": false,
"NEWSLETTER_FORM_INPUT_NAME": false
},
"rules": {
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/react-in-jsx-scope": 0
}
},
"lint-staged": {
"*.js": "eslint"
},
"now": {
"alias": "relate"
},
"pre-commit": "lint-staged"
}