-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.72 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
48
49
50
51
{
"name": "deb.ug",
"version": "1.0.0",
"description": "Personal website for Brian Gaffney",
"main": "src/main.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack/webpack.config.babel.js --progress",
"build": "npm run deleteBuild && NODE_ENV=production webpack --optimize-minimize --config webpack/webpack.dist.config.babel.js --colors --progress --display-chunks --display-modules",
"deleteBuild": "rm -rf ./build",
"deploy": "npm run build && ./deploy.sh && npm run deleteBuild",
"lint": "./node_modules/.bin/eslint --no-ignore ./.*.js ./",
"lint-fix": "./node_modules/.bin/eslint --fix --no-ignore ./.*.js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brian-Gaffney/Deb.ug.git"
},
"author": "Brian Gaffney",
"bugs": {
"url": "https://github.com/Brian-Gaffney/Deb.ug/issues"
},
"homepage": "https://deb.ug",
"dependencies": {
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"bluebird": "^3.3.1",
"eslint": "^3.15.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.9.0",
"favicolor": "^1.0.1",
"html-minifier": "^1.2.0",
"html-webpack-plugin": "^2.28.0",
"jss": "^6.2.0",
"preact": "^7.1.0",
"preact-compat": "^3.13.1",
"react-google-analytics": "^0.2.0",
"react-hot-loader": "^1.3.1",
"react-jss": "^5.3.0",
"three": "^0.84.0",
"tween.js": "^16.3.4",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}