-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.18 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.18 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "NourishMe",
"private": true,
"version": "0.0.1",
"description": "NourishMe: a better meal planner - Boilerplate generated by generator-react-webpack",
"main": "",
"scripts": {
"clean": "rimraf dist/*",
"copy": "copyfiles -f ./src/index.html ./src/favicon.png ./dist",
"dist": "npm run copy & webpack --env=dist",
"lint": "eslint ./src",
"posttest": "npm run lint",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"serve": "node server.js --env=dev",
"serve:dist": "node server.js --env=dist",
"start": "nodemon server.js --env=dev",
"test": "karma start",
"test:watch": "karma start --autoWatch=true --singleRun=false"
},
"repository": {
"type": "git",
"url": "https://github.com/philspins/NourishMe"
},
"keywords": [],
"author": "Philip Craig",
"devDependencies": {
"alt-utils": "^1.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.22.0",
"bower-webpack-plugin": "^0.1.9",
"chai": "^3.2.0",
"copyfiles": "^1.0.0",
"css-loader": "^0.23.0",
"eslint": "^3.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^6.9.0",
"file-loader": "^0.9.0",
"find-up": "^2.1.0",
"glob": "^7.0.0",
"ignore-styles": "^5.0.1",
"isparta-instrumenter-loader": "^1.0.0",
"karma": "^1.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.0",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"minimist": "^1.2.0",
"mocha": "^3.0.0",
"open": "0.0.5",
"phantomjs-prebuilt": "^2.0.0",
"prepend-file": "^1.3.0",
"react-addons-test-utils": "^15.0.0",
"react-hot-loader": "^1.2.9",
"rimraf": "^2.4.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.0",
"webpack-dev-middleware": "^1.9.0"
},
"dependencies": {
"alt": "^0.18.6",
"auth0-lock": "^10.7.2",
"axios": "^0.15.3",
"babel-core": "^6.22.1",
"bluebird": "^3.4.7",
"body-parser": "^1.16.0",
"bootstrap": "^3.3.7",
"chart.js": "^2.3",
"core-js": "^2.0.0",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"express-winston": "^2.1.3",
"graphql": "^0.8.2",
"graphql-date": "^1.0.2",
"graphql-relay": "^0.4.4",
"graphql-sequelize": "^4.0.5",
"jquery": "^3.1.1",
"keymirror": "^0.1.1",
"moment": "^2.17.1",
"mysql": "^2.13.0",
"normalize.css": "^4.0.0",
"path": "^0.12.7",
"react": "^15.0.0",
"react-bootstrap": "^0.30.7",
"react-chartjs-2": "^2.0.0",
"react-dom": "^15.0.0",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"sequelize": "^3.30.0",
"superagent": "^3.2.1",
"toastr": "^2.1.2",
"underscore": "^1.8.3",
"winston": "^2.3.1"
}
}