-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 776 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 776 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
{
"name": "react-login",
"version": "1.0.0",
"description": "A ReactJS app with register, log in, log out and account components and routes. A starter for front-end authentication.",
"scripts": {
"start": "parcel src/app/index.html --out-dir dist/app",
"build": "parcel build src/app/index.html --out-dir dist/app",
"gh-build": "parcel build src/app/index.html --out-dir dist/app --public-url ./"
},
"dependencies": {
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"validator": "^10.10.0"
},
"engines": {
"node": ">=8.x"
},
"repository": {
"type": "git",
"url": "https://github.com/codemzy/react-login.git"
},
"author": "codemzy",
"license": "MIT"
}