This repository was archived by the owner on Oct 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "todo-graphql-mvc",
"version": "0.1.0",
"description": "A todomvc.com example built on RelayJS with @RisingStack/graffiti-mongoose Schema",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon --watch server/* --exec \"npm run update && babel-node server/index.js\"",
"update": "babel-node server/utils/updateSchema.js",
"deploy": "cross-env NODE_ENV=production webpack --config webpack.config.js && npm run update && cross-env NODE_ENV=production cross-env APP_URL=http://localhost:3000 babel-node server/index.js",
"lint": "eslint --ignore-path .gitignore client"
},
"pre-commit": "lint",
"repository": {
"type": "git",
"url": "git+https://github.com/marhyorh/todo-mvc"
},
"author": "Ademola Adegbuyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/marhyorh/todo-mvc/issues"
},
"homepage": "https://github.com/marhyorh/todo-mvc",
"devDependencies": {
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.1.2",
"nodemon": "^1.10.2",
"pre-commit": "^1.1.3",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.0"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin": "^0.9.2",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"cross-env": "^2.0.0",
"css-loader": "^0.24.0",
"express": "^4.14.0",
"express-graphql": "^0.5.4",
"file-loader": "^0.9.0",
"graphql": "^0.7.0",
"graphql-relay": "^0.4.3",
"graphql-relay-subscription": "^0.1.2",
"html-webpack-plugin": "^2.22.0",
"lodash": "^4.15.0",
"mongoose": "^4.6.0",
"postcss-loader": "^0.11.0",
"precss": "^1.4.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-dropdown": "^1.1.0",
"react-relay": "^0.9.2",
"react-router": "^2.7.0",
"react-router-relay": "^0.13.4",
"style-loader": "^0.13.1",
"todomvc-app-css": "^2.0.6",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}