forked from saadpasta/developerFolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"homepage": "https://developerfolio.js.org/",
"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",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-easy-emoji": "^1.3.0",
"react-headroom": "^3.0.0",
"react-lottie": "^1.2.3",
"react-reveal": "^1.2.2",
"react-scripts": "^3.4.3",
"react-test-renderer": "^17.0.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",
"deploy": "gh-pages -b master -d build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"./**/*.{js,css,json,scss}\"",
"check-format": "prettier -c \"./**/*.{js,css,json,scss}\""
},
"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": {
"dotenv": "^8.2.0",
"prettier": "^2.3.1"
}
}