-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "stars",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "tsc && node ./src/www.js",
"prod:start": "tsc && node ./src/www.js",
"server": "tsc && nodemon --exec ts-node ./src/www.js",
"server:debug": "tsc && node -r ts-node/register ./src/www.js",
"server:debug:watch": "tsc && ts-node-dev -r ts-node/register ./src/www.js",
"client": "npm start --prefix client",
"client:build": "npm run build --prefix client && cp -R client/build/ public/",
"client-install": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"debug": "concurrently \"npm run server:debug\" \"npm run client\"",
"build-run": "NODE_ENV=production concurrently \"npm run start\" \"npm run client:build\"",
"tsc": "tsc"
},
"dependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.14.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"axios": "^0.19.2",
"concurrently": "^5.2.0",
"cookie-parser": "~1.4.4",
"cookie-session": "^1.4.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"eslint-plugin-graphql": "^4.0.0",
"express": "~4.16.1",
"graphql": "^15.1.0",
"graphql-tag": "^2.10.3",
"http-errors": "~1.6.3",
"isomorphic-fetch": "^2.2.1",
"jade": "~1.11.0",
"mongoose": "^5.9.15",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
}
}