-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "react-ssr-boilerplate",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start": "NODE_ENV=production node build/server.js",
"format": "prettier --write \"./src/**/*.js\"",
"lint": "eslint \"./src/**/*.js\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"babel-plugin-emotion": "^7.3.2",
"emotion": "^7.3.2",
"emotion-server": "^7.3.2",
"express": "4.15.4",
"i18next": "^9.0.0",
"i18next-browser-languagedetector": "^2.0.0",
"i18next-express-middleware": "^1.0.6",
"i18next-node-fs-backend": "^1.0.0",
"i18next-xhr-backend": "^1.4.3",
"isomorphic-fetch": "^2.2.1",
"razzle": "0.7.5",
"react": "15.6.1",
"react-apollo": "^1.4.15",
"react-dom": "15.6.1",
"react-emotion": "^7.3.2",
"react-i18next": "^6.0.2",
"react-router-dom": "4.1.2",
"react-test-renderer": "^15.6.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.12",
"@storybook/addon-links": "^3.2.12",
"@storybook/addon-storyshots": "^3.2.12",
"@storybook/react": "^3.2.12",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.1.0",
"prettier": "^1.7.0"
}
}