-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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": "picture-smith",
"version": "0.1.0",
"description": "Learning Express and Redux",
"repository": {
"type": "git",
"url": "git://github.com/tublitzed/picture-smith.git"
},
"author": "Rachel Tublitz",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"node-sass": "^4.1.1",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"foundation-sites": "^6.3.0",
"oauth": "^0.9.12",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-saga": "^0.14.0",
"the-noun-project": "^2.0.1",
"react-hot-loader": "^1.3.1"
},
"scripts": {
"start": "node server/index.js",
"lint": "eslint app/assets/js/",
"build-css": "node-sass --output-style=compressed app/assets/scss/main.scss public/css/main.css",
"watch-css": "nodemon -e scss -w app/assets/scss -x 'npm run build-css'"
},
"engines": {
"node": "7.10.1"
}
}