-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.77 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ei1039-ars",
"version": "0.0.1",
"description": "Audience Response System created for EI1039 subject at Universitat Jaume I (UJI)",
"main": "./dist/server.js",
"engines": {
"node": "6.3.x",
"npm": "3.10.x"
},
"scripts": {
"build-client": "cross-env NODE_ENV=production webpack -p",
"build-server": "cross-env NODE_ENV=production webpack --config webpack.server.config.js -p",
"build": "concurrently -r \"npm run build-client\" \"npm run build-server\"",
"clean": "rimraf dist/",
"dev:server": "concurrently -r \"cross-env NODE_ENV=development webpack --config webpack.server.config.js --watch\" \"cross-env NODE_ENV=development nodemon ./dist/server/main.js\"",
"dev:client": "cross-env NODE_ENV=development webpack-dev-server -d --inline --progress --no-info",
"dev": "concurrently -r \"npm run dev:client\" \"npm run dev:server\"",
"prebuild": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build",
"start": "node ./dist/server/main.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/agdc/ei1039-ars.git"
},
"keywords": [
"ars",
"uji",
"react",
"node",
"typescript"
],
"author": "Alberto Gonzalez Perez <[email protected]>",
"contributors": [
"Daniel Chia Aguilar <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/agdc/ei1039-ars/issues"
},
"homepage": "https://gitlab.com/agdc/ei1039-ars#README",
"dependencies": {
"@types/axios": "^0.9.34",
"@types/bcrypt": "0.0.30",
"@types/body-parser": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/es6-promise": "0.0.32",
"@types/isomorphic-fetch": "0.0.31",
"@types/jsonwebtoken": "^7.1.33",
"@types/lodash": "^4.14.43",
"@types/material-ui": "^0.16.44",
"@types/mongoose": "^4.7.1",
"@types/morgan": "^1.7.32",
"@types/passport": "^0.2.35",
"@types/passport-jwt": "^2.0.19",
"@types/passport-local": "^1.0.29",
"@types/pubsub-js": "^1.5.17",
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.19",
"@types/react-intl": "2.1.0",
"@types/react-intl-redux": "^0.1.1",
"@types/react-redux": "^4.4.35",
"@types/react-router": "^2.0.41",
"@types/react-tap-event-plugin": "0.0.30",
"@types/redux-form": "^4.0.31",
"@types/validator": "^5.7.35",
"@types/winston": "0.0.32",
"@types/ws": "0.0.37",
"apollo-client": "^0.5.23",
"axios": "^0.15.3",
"bcrypt": "^1.0.1",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"flexboxgrid": "^6.3.1",
"graphql": "^0.7.2",
"graphql-server-express": "^0.4.3",
"graphql-tag": "^1.1.2",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.2",
"material-ui": "^0.16.5",
"moment": "^2.17.1",
"mongoose": "^4.7.3",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"pubsub-js": "^1.5.4",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-intl": "^2.1.5",
"react-intl-redux": "^0.2.0",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-form": "^5.3.3",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"typed-graphql": "^1.0.2",
"validator": "^6.2.0",
"winston": "^2.3.0",
"ws": "^1.1.1"
},
"devDependencies": {
"awesome-typescript-loader": "^3.0.0-beta.17",
"concurrently": "^3.1.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4",
"source-map-loader": "^0.1.5",
"typescript": "^2.1.4",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}