-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.09 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
67
68
69
{
"homepage": "https://beme248.github.io/profile",
"name": "developerfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"colorthief": "^2.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"gh-pages": "^2.1.1",
"jest-canvas-mock": "^2.3.1",
"lottie-react": "^2.4.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-easy-emoji": "^1.8.1",
"react-headroom": "^3.0.0",
"react-reveal": "^1.2.2",
"react-scripts": "^5.0.1",
"react-test-renderer": "^16.10.2",
"react-twitter-embed": "3.0.3",
"sass": "^1.32.8"
},
"scripts": {
"predeploy": "npm run build",
"start": "node fetch.js && react-scripts start",
"build": "node fetch.js && react-scripts build && rimraf docs && shx mv build docs",
"build:push": "npm run build && git add . && git commit -m 'deploy' && git push",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"./**/*.{js,css,json,scss}\"",
"check-format": "prettier -c \"./**/*.{js,css,json,scss}\"",
"firebase:login": "firebase login",
"firebase:reauth": "firebase login --reauth",
"firebase:init": "firebase init",
"// ": "special build for firebase without /profile",
"firebase:build": "npm run build && node scripts/replacePaths.js",
"firebase:deploy": "npm run firebase:reauth && npm run firebase:build && firebase deploy",
"deploy:all": "npm run build:push && npm run firebase:deploy"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"dotenv": "^8.2.0",
"firebase": "^10.8.1",
"firebase-tools": "^13.4.0",
"prettier": "^2.3.1",
"rimraf": "^5.0.5",
"shx": "^0.3.4"
}
}