forked from Adherentman/parcel-typescript-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 680 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 680 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
{
"name": "parcel-react",
"version": "1.0.0",
"main": "src/index.tsx",
"license": "MIT",
"keywords": [
"Typescript",
"React",
"Parcel"
],
"scripts": {
"start": "parcel index.html",
"build": "cross-env NODE_ENV=production parcel build index.html --public-url '/'",
"format": "prettier --write '**/*.{tsx,ts,css,md}'"
},
"dependencies": {
"@types/react": "^16.0.30",
"@types/react-dom": "^16.0.3",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.3",
"parcel-bundler": "^1.6.2",
"prettier": "1.10.2",
"typescript": "^2.6.2"
}
}