-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1000 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1000 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
{
"name": "react-parcel",
"version": "1.0.0",
"description": "📦 🚀 A minimal React.js boilerplate project with parcel as bundler.",
"main": "src/index.js",
"scripts": {
"start": "rm -rf dist && rm -rf .cache && parcel src/index.html --open",
"build": "rm -rf dist && rm -rf .cache && parcel build src/index.html"
},
"keywords": [
"react",
"parcel",
"parcel-bundler",
"parceljs",
"parcel-react"
],
"author": {
"name": "KingRayhan",
"email": "rayhan095@gmail.com",
"url": "https://rayhan.info"
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"parcel-bundler": "^1.10.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"sass": "^1.14.3"
},
"dependencies": {
"react": "^16.6.1",
"react-dom": "^16.6.1"
}
}