-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "daviddelo.com",
"private": true,
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && ./node_modules/webpack/bin/webpack.js && mkdir dist/public && cp -R src/public dist",
"dev": "webpack-dev-server --port 3000 --devtool eval --progress --colors --hot --content-base public",
"test": "./node_modules/karma/bin/karma start --single-run",
"test-watch": "./node_modules/karma/bin/karma start"
},
"author": {
"name": "David Delo",
"email": "[email protected]",
"url": "http://www.daviddelo.com/"
},
"license": "UNLICENSED",
"dependencies": {
"babel-polyfill": "^6.16.0",
"babel-register": "^6.18.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cookies-js": "^1.2.2",
"eslint-plugin-import": "^1.16.0",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"react": "^15.3.2",
"react-addons-perf": "^15.3.2",
"react-dom": "^15.3.2",
"react-helmet": "^3.1.0",
"react-router": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-strict-mode": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chunk-manifest-webpack-plugin": "^0.1.0",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.25.0",
"eslint": "^3.9.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.6.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.4.1",
"file-loader": "^0.9.0",
"node-sass": "^3.10.1",
"react-addons-test-utils": "^15.3.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-fail-plugin": "^1.0.5",
"webpack-md5-hash": "0.0.5",
"webpack-stats-plugin": "^0.1.4"
}
}