forked from tptee/portfolio-brent-schroeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "brent-schroeter",
"version": "1.0.0",
"description": "Personal portfolio website.",
"main": "index.js",
"scripts": {
"build:production": "webpack --optimize-minimize --optimize-dedupe --optimize-occurence-order",
"deploy": "npm run build:production && firebase deploy",
"start": "webpack && firebase serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Brent Schroeter <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.3.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^5.2.2",
"json-loader": "^0.5.4",
"webpack": "^1.13.1"
},
"dependencies": {
"ejs": "^2.5.1",
"firebase-tools": "^3.0.7",
"fs": "0.0.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-little-router": "7.0.2"
}
}