-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "with-express",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"homepage": ".",
"scripts": {
"build": "cd searchkit-react && yarn build && cd .. && cp -R searchkit-react/build/* public/",
"dev": "nodemon server.ts",
"serve": "ts-node server.ts",
"start": "concurrently \"NODE_ENV=development nodemon server.ts\" \" cd searchkit-react && REACT_APP_GRAPHQL_URL=http://localhost:4000/graphql PORT=3000 yarn dev\"",
"tsc": "tsc server.ts"
},
"dependencies": {
"@searchkit/schema": "^3.0.0-canary.39",
"apollo-server-express": "^2.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"graphql": "^15.5.1",
"helmet": "^4.6.0",
"lodash": "^4.17.21",
"sofa-api": "^0.10.2",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@types/compression": "^1.7.1",
"@types/express": "^4.17.13",
"@types/node": "^16.0.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^6.2.0",
"nodemon": "^2.0.10",
"serve": "^12.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}