-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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": "CSS-photo-manipulator",
"version": "0.1.0",
"description": "Manipulate a photo with CSS using blend-modes, filters, and transforms.",
"main": "server.js",
"scripts": {
"build": "NODE_ENV=production node_modules/.bin/webpack --progress -p --config ./webpack.dist.config.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/silenceonthelam/CSS-photo-manipulator.git"
},
"author": "Jessie Schalles",
"license": "MIT",
"bugs": {
"url": "https://github.com/silenceonthelam/CSS-photo-manipulator/issues"
},
"homepage": "https://github.com/silenceonthelam/CSS-photo-manipulator",
"dependencies": {
"lodash.partition": "^4.6.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-redux": "^4.4.6",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"node-sass": "^3.13.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
}
}