-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 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
{
"name": "int20h-2019",
"version": "1.0.0",
"description": "",
"main": "src/host/index.ts",
"scripts": {
"docs": "graphdoc -s src/common/schema.graphql -o ./dist/docs/graphdoc --force",
"codegen:gql": "gql-gen",
"build-client:prod": "webpack --config src/client/webpack.config.js --mode production",
"build-client": "webpack --config src/client/webpack.config.js --mode development --progress",
"build-host": "cd src/host/ && tsc && ef-tspm && cd ../../",
"build:prod": "npm run clean && npm run build-host && npm run build-client:prod",
"build": "npm run clean && npm run build-host && npm run build-client",
"clean": "rm -rf dist build",
"dev": "npm-run-all --parallel watch:client watch:server",
"heroku-postbuild": "npm run build:prod && npm run docs",
"watch:client": "webpack --config src/client/webpack.config.js --watch --mode development --progress",
"watch:server": "nodemon",
"start": "node build/host/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/101gram/INT20H-2019.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/101gram/INT20H-2019/issues"
},
"homepage": "https://github.com/101gram/INT20H-2019#readme",
"devDependencies": {
"@2fd/graphdoc": "^2.4.0",
"@ef-carbon/tspm": "^2.2.5",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.7",
"@types/colors": "^1.2.1",
"@types/dotenv": "^6.1.0",
"@types/escape-string-regexp": "^1.0.0",
"@types/express": "4.16.1",
"@types/form-data": "^2.2.1",
"@types/graphql-iso-date": "^3.3.1",
"@types/lodash": "^4.14.120",
"@types/mathjs": "^5.0.0",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.3.12",
"@types/mongoose-paginate": "^5.0.6",
"@types/morgan": "^1.7.35",
"@types/node": "^10.12.22",
"@types/node-fetch": "^2.1.4",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-redux": "^7.0.1",
"apollo-boost": "^0.1.27",
"apollo-client": "^2.4.12",
"awesome-typescript-loader": "^5.2.1",
"classnames": "^2.2.6",
"css-loader": "^1.0.1",
"graphql-code-generator": "^0.18.2",
"graphql-codegen-add": "^0.16.1",
"graphql-codegen-typescript-client": "^0.16.1",
"graphql-codegen-typescript-common": "^0.16.1",
"graphql-codegen-typescript-react-apollo": "^0.16.1",
"graphql-codegen-typescript-resolvers": "^0.16.1",
"graphql-codegen-typescript-server": "^0.16.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-status-codes": "^1.3.0",
"material-ui-flat-pagination": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"notistack": "^0.4.2",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"react": "^16.8.1",
"react-apollo": "^2.4.1",
"react-dom": "^16.8.1",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"apollo-server-express": "^2.14.2",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"colors": "^1.3.3",
"dotenv": "^6.2.0",
"escape-string-regexp": "^1.0.5",
"express": "^4.16.4",
"form-data": "^2.3.3",
"graphql": "^14.1.1",
"graphql-iso-date": "^3.6.1",
"mathjs": "^5.4.2",
"mongoose": "^5.7.5",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1",
"node-fetch": "^2.6.1",
"typescript-collections": "^1.3.2",
"vee-type-safe": "^3.2.0"
}
}