-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "neat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.development.js",
"build:production": "webpack --config webpack.production.js",
"pack": "gulp --releaseVersion 1.0.0",
"pack:production": "gulp --releaseVersion 1.0.0 --mode production",
"start": "nodemon --inspect ./src/index.ts --localhost",
"start:dist": "nodemon dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.13.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"cookie-parser": "^1.4.5",
"form-data": "^3.0.0",
"graphql": "^15.0.0",
"http-proxy-middleware": "^1.0.4",
"jsencrypt": "^3.0.0-rc.1",
"node-rsa": "^1.0.8",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.0.0-rc.1",
"typedi": "^0.8.0"
},
"bundledDependencies": [
"apollo-server-express",
"axios",
"body-parser",
"class-validator",
"cookie-parser",
"form-data",
"graphql",
"jsencrypt",
"node-rsa",
"reflect-metadata",
"type-graphql",
"typedi",
"http-proxy-middleware"
],
"devDependencies": {
"@types/webpack-env": "^1.15.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.1",
"nodemon": "^2.0.3",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.0.1",
"gulp-replace": "^1.0.0",
"gulp-run": "^1.7.1"
}
}