-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 920 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 920 Bytes
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
{
"name": "project001",
"version": "1.0.0",
"description": "This is a react app made from scratch without creat-react-app",
"main": "App.js",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipratyushs/learningreact.git"
},
"author": "Pratyush Swain",
"license": "ISC",
"bugs": {
"url": "https://github.com/ipratyushs/learningreact/issues"
},
"homepage": "https://github.com/ipratyushs/learningreact#readme",
"devDependencies": {
"parcel": "^2.11.0",
"postcss": "^8.4.38",
"process": "^0.11.10",
"tailwind": "^4.0.0",
"tailwindcss": "^3.4.3"
},
"dependencies": {
"autoprefixer": "^10.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3"
},
"browserslist": [
"last 2 versions"
]
}