-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "web3-site",
"version": "0.1.0",
"description": "The freeCodeCamp.org open-source codebase and web3 curriculum",
"private": true,
"distDir": "build",
"homepage": "https://web3.freecodecamp.org",
"author": "freeCodeCamp <[email protected]>",
"scripts": {
"develop": "parcel public/index.html --dist-dir build",
"build": "parcel build public/index.html --dist-dir build",
"format": "npx prettier --write ."
},
"dependencies": {
"@swc/helpers": "0.5.12",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.28.1"
},
"devDependencies": {
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"parcel": "2.12.0",
"prettier": "2.8.8",
"process": "0.11.10"
},
"eslintConfig": {
"extends": [
"prettier",
"eslint:recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/freeCodeCamp/web3-site/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/web3-site.git"
},
"license": "BSD-3-Clause"
}