-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "community-page-v2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^3.9.4",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-localstorage-hoc": "0.0.2",
"react-masonry-component": "^6.2.1",
"react-scripts": "^2.1.8",
"react-skylight": "^0.5.1"
},
"scripts": {
"start": "npm run sass:build && concurrently \"npm run sass:watch\" \"react-scripts start\"",
"build": "npm run sass:build && react-scripts build && gulp",
"test": "react-scripts test",
"eject": "react-scripts eject",
"sass:watch": "node-sass -w src/styles/scss -o src/styles/css",
"sass:build": "node-sass src/styles/scss -o src/styles/css --source-map true"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"concurrently": "^5.2.0",
"gulp": "^4.0.2",
"gulp-ignore": "^3.0.0",
"gulp-rename": "^2.0.0",
"node-sass": "^4.14.1"
}
}