-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "ratp-schedules",
"version": "1.0.0",
"description": "A faster way to access Paris public transportation schedules",
"private": "true",
"main": "server/index.js",
"scripts": {
"dev": "node server/index.js",
"build": "next build",
"start": "NODE_ENV=production node server/index.js",
"lint": "eslint .",
"precommit": "lint-staged",
"prettify": "prettier-eslint --write \"**/*.js*\" --list-different --config .prettierrc"
},
"author": "MatthieuLemoine",
"license": "MIT",
"lint-staged": {
"linters": {
"*.js": [
"prettier-eslint --write --config .prettierrc",
"eslint --fix",
"git add"
],
"*.json": [
"prettier-eslint --write --config .prettierrc",
"git add"
]
}
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-styled-components": "^1.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"fast-async": "7.0.6",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1"
},
"dependencies": {
"@sindresorhus/slugify": "^0.3.0",
"algoliasearch": "^3.30.0",
"chalk": "^2.4.1",
"express": "^4.16.3",
"next": "^7.0.1",
"next-offline": "^3.0.1",
"nodent-runtime": "^3.2.1",
"prop-types": "^15.6.2",
"qs": "^6.5.2",
"ramda": "^0.25.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"recompose": "^0.30.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"styled-components": "^3.4.9"
}
}