-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 988 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 988 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
27
28
29
30
31
{
"name": "social-media",
"version": "0.1.0",
"private": true,
"homepage": "https://cxc421.github.io/social-media",
"dependencies": {
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"font-awesome": "^4.7.0",
"gh-pages": "^1.0.0",
"jquery": "^3.2.1",
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2",
"onchange": "^3.2.1",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"react-scripts": "1.0.10"
},
"scripts": {
"build-scss": "node-sass --output-style expanded src/scss/index.scss src/index.build.css",
"watch-scss": "onchange \"src/scss/**/*.scss\" -- npm run build-scss",
"start-js": "react-scripts start",
"start": "npm run build-scss && run-p watch-scss start-js",
"build": "npm run build-scss && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}