-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "memories_app",
"version": "1.0.0",
"description": "Humans brain - isn't safe place for storing of your memories.",
"engines": {
"node": "6.11.1"
},
"main": "index.js",
"scripts": {
"build": "webpack --config ./webpack.config.js --progress --colors",
"start": "node ./app.js",
"dev": "SET 'NODE_ENV=development' && node ./app.js",
"heroku-postbuild": "webpack --config ./webpack.prod.config.js --progress --colors",
"meteor": "choco install meteor --params=\"'/RELEASE:1.6.0.1'\"",
"add_platform": "meteor add-platform ios"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "6.3.1",
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"babel-plugin-transform-runtime": "6.4.3",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"css-loader": "0.23.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.11.2",
"isomorphic-style-loader": "3.0.0",
"node-sass": "4.5.3",
"npm-install-webpack-plugin": "2.0.2",
"postcss-loader": "0.8.0",
"precss": "1.4.0",
"react-hot-loader": "1.3.0",
"sass-loader": "6.0.6",
"style-loader": "0.13.0",
"webpack-dev-middleware": "1.5.1",
"webpack-hot-middleware": "2.6.4"
},
"dependencies": {
"babel-polyfill": "6.3.14",
"babel-runtime": "6.3.19",
"express": "4.13.4",
"react": "0.14.9",
"react-dom": "0.14.9",
"react-redux": "4.0.6",
"redux": "3.3.1",
"redux-devtools-extension": "2.13.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"webpack": "1.12.12"
}
}