-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "professional_website",
"version": "1.0.0",
"description": "My biancadanforth.com website development files",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify src/scripts/app.jsx -o src/build/bundle.js && sass src/styles/bundle.scss src/build/bundle.css",
"watch": "watchify src/scripts/app.jsx -vo src/build/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biancadanforth/professional_website.git"
},
"author": "Bianca Danforth",
"license": "MIT",
"bugs": {
"url": "https://github.com/biancadanforth/professional_website/issues"
},
"homepage": "https://github.com/biancadanforth/professional_website#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2",
"sass": "^1.63.6",
"watchify": "^3.9.0"
}
}