This repository has been archived by the owner on Jun 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.29 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
{
"name": "infinotes",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"watch:build": "npx webpack -w",
"watch:server": "nodemon -r dotenv/config dist/server.js dotenv_config_path='config/.env'",
"dev": "npm-run-all --parallel generate watch:*",
"build": "npm-run-all --sequential generate build:production",
"start": "node dist/server.js",
"build:production": "webpack",
"debug": "npm-run-all --parallel watch:build debug:server",
"debug:server": "nodemon --inspect -r dotenv/config dist/server.js dotenv_config_path='config/.env'",
"generate": "graphql-codegen --config ./src/graphql/codegen.yml"
},
"author": "Noah May",
"license": "ISC",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.6",
"@graphql-codegen/cli": "^1.8.3",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "4.17.1",
"@types/graphql-iso-date": "^3.3.3",
"@types/helmet": "^0.0.44",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jsonwebtoken": "^8.3.4",
"@types/morgan": "^1.7.37",
"@types/mysql": "^2.15.7",
"@types/node": "^12.12.8",
"@types/passport": "^1.0.1",
"@types/passport-http-bearer": "^1.0.34",
"@types/passport-local": "^1.0.33",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-fontawesome": "^1.6.4",
"@types/react-router-dom": "^4.3.5",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"apollo-server-express": "^2.9.7",
"bcrypt": "^3.0.6",
"bootstrap": "^4.3.1",
"cors": "^2.8.5",
"css-loader": "^1.0.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-import": "^0.7.1",
"graphql-iso-date": "^3.6.1",
"graphql-tag": "^2.10.1",
"helmet": "^3.21.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.5",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"node-sass": "^4.12.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"prisma": "^1.34.10",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"@graphql-codegen/typescript": "1.8.3",
"@graphql-codegen/typescript-operations": "^1.9.0",
"@graphql-codegen/typescript-react-apollo": "^1.9.0",
"@graphql-codegen/typescript-resolvers": "^1.8.3",
"nodemon": "^1.19.1",
"npm-check": "^5.9.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.18.2"
}
}