-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next src",
"server": "NODE_ENV=development node server",
"server:mock": "NODE_ENV=development LOCAL=true node server",
"build": "next build src",
"start": "next start src",
"update-mocks": "node ./scripts/update-mocks.js"
},
"license": "MIT",
"dependencies": {
"@contentful/rich-text-react-renderer": "^13.4.0",
"@contentful/rich-text-types": "^13.4.0",
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"@reach/dialog": "^0.2.9",
"@reach/menu-button": "^0.1.18",
"@zeit/next-css": "^1.0.1",
"contentful": "^7.9.1",
"emotion-theming": "^10.0.14",
"next": "^9.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^20.0.0",
"babel-plugin-emotion": "^10.0.14",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4"
}
}