-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "sova-ide-server",
"version": "1.1.0",
"description": "Main Data Server for SOVA IDE",
"main": "index.js",
"private": true,
"scripts": {
"build": "webpack --config webpack.$NODE_ENV.js",
"start": "cross-env NODE_ENV=development npm run build & nodemon --require dotenv/config server/main",
"build:production": "cross-env NODE_ENV=production npm run build",
"start:production": "node server/main",
"commit": "git-cz",
"commit-all": "git add . && git-cz",
"changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"start_pm2": "cross-env NODE_ENV=production pm2 start server/main.js",
"version": "echo $npm_package_version"
},
"keywords": [
"Node",
"App",
"Server",
"GraphQL",
"Apollo Server",
"Typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/sovaai/sova-ide-server"
},
"author": "SOVA.AI <[email protected]>",
"license": "Apache 2.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"apollo-server": "^2.9.6",
"apollo-server-express": "^2.9.6",
"axios": "^0.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql": "^14.5.8",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.5",
"graphql-type-json": "^0.3.1",
"http-errors": "^1.7.3",
"immutable": "^4.0.0-rc.12",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.15",
"@types/passport": "^1.0.1",
"@types/webpack-env": "^1.14.1",
"clean-webpack-plugin": "^2.0.2",
"concurrently": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"ts-loader": "^6.2.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}