-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.06 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.06 KB
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
{
"name": "project-epot-backend",
"version": "1.0.0",
"description": "Backend for Project EPOT",
"author": "Joonas Yliaho <joonas.yliaho@gmail.com>",
"bin": {
"epot-bootstrap": "./bootstrap/bin/bootstrap"
},
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production run-p clean && webpack --config ./build/webpack.config.js",
"dev": "run-p start:* && yarn run build --watch",
"clean": "trash dist",
"start:db": "docker-compose up -d",
"bootstrap": "./bootstrap/bin/bootstrap",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('Please install dependencies using Yarn.')\""
},
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/nanoid": "^1.2.0",
"@types/node": "^10.10.2",
"@types/passport": "^0.4.6",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.33",
"@types/prettyjson": "^0.0.28",
"@types/webpack": "^4.4.11",
"joi": "^14.0.4",
"nodemon-webpack-plugin": "^3.0.1",
"npm-run-all": "^4.1.3",
"source-map-support": "^0.5.9",
"trash-cli": "^1.4.0",
"ts-loader": "^5.1.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2",
"webpackbar": "^2.6.3"
},
"dependencies": {
"@types/commander": "^2.12.2",
"@types/dotenv-safe": "^5.0.0",
"apollo-server": "^2.1.0",
"apollo-server-express": "^2.1.0",
"arangojs": "5",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"commander": "^2.18.0",
"cors": "^2.8.5",
"dotenv-safe": "^6.0.0",
"express": "^4.16.3",
"graphql": "^14.0.2",
"jsonwebtoken": "^8.3.0",
"nanoid": "^1.2.6",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"portfinder": "^1.0.17",
"prettyjson": "^1.2.1",
"winston": "^3.1.0"
}
}