-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 864 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 864 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
37
38
{
"name": "resume-example",
"version": "1.0.0",
"private": true,
"description": "Single page resume using React",
"author": {
"name": "Jason Williams",
"email": "jwill9999@icloud.com"
},
"keywords": [
"React",
"single-page",
"scroll",
"contactForm"
],
"repository": {
"type": "git",
"url": "git@github.com:jwill9999/resume-example.git"
},
"homepage": "https://jwill9999.github.io/resume-example",
"license": "ISC",
"devDependencies": {
"gh-pages": "^0.12.0",
"react-scripts": "0.7.0"
},
"dependencies": {
"jquery": "^3.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
}
}