-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.35 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.35 KB
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
{
"name": "portfolio_template",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"gh-pages": "^2.2.0",
"lodash": "^4.17.19",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"start": "^5.1.0",
"typescript": "^3.9.3",
"react-icons": "^3.10.0"
},
"scripts": {
"watch:sass": "node-sass src/assets/sass/main.scss src/App.css -w",
"start-prod-app": "react-scripts start",
"start-dev-app": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"build-local": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start": "npm-run-all --parallel start-prod-app watch:sass",
"start-app": "npm-run-all --parallel start-dev-app watch:sass",
"compile:sass": "node-sass src/assets/sass/main.scss src/assets/css/index.comp.css",
"concat:css": "concat -o src/assets/css/index.concat.css src/assets/css/icon-styles.css src/assets/css/index.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' src/assets/css/index.concat.css -o src/assets/css/index.prefix.css",
"compress:css": "node-sass src/assets/css/index.prefix.css src/App.css --output-style compressed",
"build:css": "npm-run-all compile:sass concat:css prefix:css compress:css",
"production-build": "npm-run-all compile:sass concat:css prefix:css compress:css build",
"local-build": "npm-run-all compile:sass concat:css prefix:css compress:css build-local"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^9.8.1",
"concat": "^1.0.3",
"gh-pages": "^3.0.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1"
}
}