-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
42
43
44
{
"name": "personal-website",
"version": "1.0.0",
"description": "A homepage for my professional portfolio",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --watch",
"sass": "sass --watch public/css/sass/main.scss:public/css/main.css",
"start": "nodemon server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradreeder/Personal-Website.git"
},
"keywords": [
"Portfolio",
"Web-Development",
"Blog"
],
"author": "Bradley Reeder",
"license": "ISC",
"bugs": {
"url": "https://github.com/bradreeder/Personal-Website/issues"
},
"homepage": "https://github.com/bradreeder/Personal-Website#readme",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"eslint-config-defaults": "^9.0.0",
"webpack": "^1.13.1"
},
"dependencies": {
"exif-js": "^2.3.0",
"hapi": "^14.1.0",
"inert": "^4.0.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-ga": "^2.4.1",
"react-hot-loader": "^1.3.0"
}
}