-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "photong",
"version": "0.0.1",
"description": "simple photo manager & sharing app",
"main": "server.js",
"scripts": {
"test": "karma start",
"start": "webpack-dev-server --config webpack.config.js -d --progress --inline",
"prebuild": "echo '============ building photong ============'",
"build": "NODE_ENV=production webpack -p --config webpack.config.js --progress",
"server": "nodemon"
},
"babel": {
"plugins": [
"transform-decorators-legacy"
],
"presets": [
"es2015",
"stage-1",
"react"
]
},
"keywords": [
"photo"
],
"author": "eisneim <[email protected]>",
"license": "ISC",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"eslint": "^2.10.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"karma": "^0.13.22",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"mocha": "^2.4.5",
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"phantomjs": "^2.1.7",
"phantomjs-prebuilt": "^2.1.7",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"babel-preset-react": "^6.5.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"classnames": "^2.2.5",
"easyimage": "^2.1.0",
"exif": "^0.6.0",
"history": "^2.1.1",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.0.0",
"koa-bodyparser": "^3.1.0",
"koa-compress": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-multer": "^1.0.0",
"koa-router": "^7.0.1",
"koa-send": "^3.2.0",
"koa-static": "^2.0.0",
"material-design-lite": "^1.1.3",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-mdl": "^1.5.4",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2"
}
}