-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
45
46
47
{
"name": "earthican.github.io",
"version": "3.0.0",
"description": "My personal website",
"main": "app.js",
"scripts": {
"test": "",
"build:less": "lessc src/less/style.less public/css/style.css && lessc src/css/loader.css public/css/loader.css",
"build:browserify": "browserify -t babelify src/js/main.js -o public/js/main.js",
"build": "npm run build:less && npm run build:browserify",
"watch:main": "watchify -t babelify src/js/main.js -o public/js/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/earthican/earthican.github.io.git"
},
"author": "Justin Cano",
"license": "ISC",
"bugs": {
"url": "https://github.com/earthican/earthican.github.io/issues"
},
"homepage": "https://github.com/earthican/earthican.github.io#readme",
"dependencies": {
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"fetch": "^1.1.0",
"node-fetch": "^1.6.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-fullscreen": "^0.1.0",
"unsplash-js": "^4.2.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"less": "^2.7.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}