-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "discipuli",
"version": "0.0.1",
"description": "The application to manage flow between teachers and students",
"main": "index.js",
"engines": {
"node": "8.1.3",
"npm": "5.3.0"
},
"scripts": {
"dev": "npm run server.dev && node ./static/server.bundle.js",
"prod": "npm run browser.prod && npm run server.prod",
"lint": "npm run client.lint && npm run common.lint && npm run server.lint",
"browser.dev": "webpack --env.NODE_ENV=browser",
"browser.prod": "webpack --env.NODE_ENV=browser --env.production",
"server.dev": "webpack --env.NODE_ENV=server",
"server.prod": "webpack --env.NODE_ENV=server --env.production",
"client.lint": "eslint -c ./.eslintrc.json ./client --ext .js, .jsx",
"common.lint": "eslint -c ./.eslintrc.json ./common --ext .js, .jsx",
"server.lint": "eslint -c ./.eslintrc.json ./server --ext .js",
"browser.lint.fix": "eslint --fix -c ./.eslintrc.json ./common --ext .js, .jsx",
"server.lint.fix": "eslint --fix -c ./.eslintrc.json ./server --ext .js",
"heroku-postbuild": "npm run prod",
"test": "jest --coverage",
"relay": "relay-compiler --src ./common --schema ./schema.graphql --extensions js jsx",
"getGraphqlSchema": "get-graphql-schema http://localhost:3000/graphql > schema.graphql"
},
"pre-commit": [
"client.lint",
"common.lint",
"server.lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/enheit/discipuli.git"
},
"keywords": [
"react",
"redux",
"axios",
"ssr"
],
"author": "Roman Mahotskyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/enheit/discipuli/issues"
},
"homepage": "https://github.com/enheit/discipuli#readme",
"dependencies": {
"express": "^4.16.2",
"graphql": "^0.12.3",
"isomorphic-fetch": "^2.2.1",
"postgraphile": "^4.0.0-alpha2.31",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-relay": "^1.4.1",
"react-relay-network-layer": "^2.1.2",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"relay-runtime": "^1.4.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-relay": "^1.4.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"html-loader": "^0.5.4",
"jest": "^22.1.4",
"pre-commit": "^1.2.2",
"react-hot-loader": "^4.0.0-beta.13",
"relay-compiler": "^1.4.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-graphql-loader": "^0.1.0",
"webpack-hot-middleware": "^2.21.0",
"webpack-merge": "^4.1.1",
"webpack-node-externals": "^1.6.0"
}
}