forked from Devographics/state-of-js-graphql-results-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.78 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
{
"name": "state-of-js-graphql-results-api",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@sentry/node": "^5.27.1",
"@sentry/tracing": "^5.27.1",
"@types/node-fetch": "^2.5.7",
"apollo-server": "^2.18.2",
"apollo-server-express": "^2.18.2",
"apollo-server-plugin-response-cache": "^0.5.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"js-yaml": "^3.14.1",
"lodash": "^4.17.20",
"mongodb": "^3.6.2",
"write-file-webpack-plugin": "^4.5.1"
},
"devDependencies": {
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.161",
"@types/mongodb": "^3.5.27",
"@types/node": "^14.11.7",
"@types/webpack-env": "^1.15.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.0",
"graphql-tag": "^2.11.0",
"js-yaml-loader": "^1.2.2",
"nodemon-webpack-plugin": "^4.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.2.0",
"webpack-node-externals": "^2.5.2"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.production.js",
"dev": "NODE_ENV=development webpack --config webpack.development.js",
"dev:clean": "NODE_ENV=development DISABLE_CACHE=true webpack --config webpack.development.js",
"fmt": "prettier --write \"src/**/*.{ts,js,mjs,yml,graphql}\"",
"heroku-postbuild": "NODE_ENV=production webpack --config webpack.production.js",
"start": "node dist/server.js"
},
"engines": {
"node": ">=13.0.0"
}
}