-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 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
{
"name": "samsonmaconi.com",
"version": "0.1.0",
"private": true,
"dependencies": {
"emailjs-com": "^2.2.4",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-flickity-component": "3.0.2",
"react-ga": "^2.5.7",
"react-google-maps": "^9.4.5",
"react-html-parser": "^2.0.2",
"react-instafeed": "^0.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"react-tilt": "^0.1.4",
"redux": "^4.0.0",
"smoothscroll-polyfill": "^0.4.3"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "npm-run-all -p watch-css start-js",
"build": "npm-run-all -p build-css build-js",
"start-js": "react-scripts start",
"build-js": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "aws s3 sync build/ s3://samsonmaconi.com",
"build-deploy": "npm-run-all -s build-css build-js deploy"
}
}