-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"name": "natac-recipe-app",
"version": "0.1.0",
"description": "A recipe app I wanted to make for my Mom to store her growing collection of vegan recipes",
"main": "server.js",
"scripts": {
"start": "babel-node server.js",
"test": "mocha --compilers js:babel-core/register test/*.js",
"testWatch": "mocha -w --compilers js:babel-core/register test/*.js",
"postinstall": "webpack -p --config ./webpack.production.config.js --progress --colors",
"production": "NODE_ENV=production webpack -p --config ./webpack.production.config.js",
"sim": "NODE_ENV=production webpack -p --config ./webpack.production.config.js && NODE_ENV=production babel-node bin/www"
},
"keywords": [
"react",
"javascript",
"recipe",
"vegan"
],
"author": "Sean Campbell",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^4.1.5",
"eslint-plugin-react": "^3.10.0",
"node-libs-browser": "^0.5.3",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"css-loader": "^0.23.0",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"firebase": "^2.3.2",
"history": "^1.13.1",
"moment": "^2.10.6",
"node-sass": "^3.4.2",
"path": "^0.12.7",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-router": "^1.0.0",
"reactfire": "^0.5.1",
"sass-loader": "^3.1.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.8"
}
}