-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1001 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1001 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
{
"name": "bingo-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --open",
"build": "npm run type-check && parcel build src/index.html --public-url './'",
"format": "prettier --write '**/*.{tsx,ts,css,md,html}' '!dist'",
"type-check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.0.9",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"parcel-bundler": "^1.12.4",
"postcss-modules": "^2.0.0",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
},
"dependencies": {
"@hot-loader/react-dom": "^16.13.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21"
},
"alias": {
"react-dom": "@hot-loader/react-dom"
}
}