-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 910 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 910 Bytes
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
{
"name": "mysite",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"build": "webpack --config webpack.config.js --progress --profile --colors",
"start:dev": "webpack-dev-server",
"sync": "aws s3 sync . s3://<YOUR_S3_BUCKET_URL> --exclude 'node_modules/*' --exclude 'package.json' --exclude 'webpack.config.js' --exclude 'yarn-error.log' --exclude 'yarn.lock' --exclude '.git/*' --exclude '.gitignore'"
},
"dependencies": {
"react": "^16",
"react-dom": "^16",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"jest": "^22.4.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
}
}