-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "super-simple-react-starter",
"version": "1.0.0",
"description": "React starter kit with my best practices.",
"main": "index.js",
"scripts": {
"start": "cross-env EXECUTION_ENV=dev razzle start",
"build": "razzle build",
"test": "razzle test",
"test:ci": "cross-env CI=true razzle test",
"start:prod": "cross-env NODE_ENV=production node build/server.js",
"prebuild": "rebuild-node-sass",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myungjaeyu/super-simple-react-starter.git"
},
"keywords": [
"react",
"starter-kit",
"ssr"
],
"author": "myungjaeyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/myungjaeyu/super-simple-react-starter/issues"
},
"homepage": "https://github.com/myungjaeyu/super-simple-react-starter#readme",
"dependencies": {
"aws-sdk": "^2.354.0",
"aws-serverless-express": "^3.2.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dynamoose": "^1.1.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"immutability-helper": "^2.7.1",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-observable": "^1.0.0",
"rxjs": "^6.2.1",
"semantic-ui-css": "^2.3.2",
"semantic-ui-react": "^0.82.0",
"styled-components": "^3.3.3",
"xhr2": "^0.1.4"
},
"devDependencies": {
"cross-env": "^5.1.6",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"razzle": "^2.1.0",
"react-test-renderer": "^16.5.2",
"rebuild-node-sass": "^1.1.0",
"sass-loader": "^7.0.3",
"serverless-api-cloudfront": "^0.9.4",
"serverless-apigw-binary": "^0.4.4",
"serverless-dotenv-plugin": "^1.1.5",
"svg-inline-loader": "^0.8.0",
"@storybook/react": "^5.0.11",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@babel/core": "^7.4.5",
"babel-loader": "^8.0.6"
}
}