-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "my-hooks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"npm:compile:watch\" \"npm:start:dev\"",
"start:dev": "tsc --noEmit && parcel index.html --open",
"compile:watch": "tsc -p . --noEmit --watch",
"predeploy": "tsc --noEmit && parcel build index.html 404.html --out-dir dist --public-url /my-hooks/",
"deploy": "gh-pages -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dixitk13/my-hooks.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dixitk13/my-hooks/issues"
},
"homepage": "https://github.com/dixitk13/my-hooks",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"gh-pages": "^2.2.0"
},
"devDependencies": {
"@types/node": "^14.14.28",
"@types/react": "^16.9.42",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"concurrently": "^5.2.0",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.10",
"typescript": "^3.9.6"
}
}