-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 3.03 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": "pos-server",
"version": "1.0.0",
"description": "Core server",
"main": "index.js",
"scripts": {
"start": "node dist",
"build:dev": "webpack --mode development --env ENV=development",
"dev": "cross-env ENV=development ts-node-dev --respawn -r tsconfig-paths/register --transpile-only -- src/index.ts",
"debug": "cross-env ENV=development ts-node-dev --respawn -r tsconfig-paths/register --transpile-only --inspect-brk -- src/index.ts",
"build": "webpack --mode production --env ENV=production",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"yalc:link": "yalc link @sellerspot/database-models @sellerspot/universal-types @sellerspot/universal-functions",
"yalc:remove": "yalc remove --all",
"update:packages": "npm install --save @sellerspot/database-models @sellerspot/universal-functions @sellerspot/universal-types",
"prettier": "prettier --write src",
"lint-staged": "lint-staged",
"postinstall": "npm run husky:install",
"husky:install": "husky install",
"husky:pre-commit": "npm run lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SellerSpot/pos-server.git"
},
"keywords": [],
"author": "Sellerspot",
"license": "ISC",
"bugs": {
"url": "https://github.com/SellerSpot/pos-server/issues"
},
"homepage": "https://github.com/SellerSpot/pos-server#readme",
"devDependencies": {
"@types/cookie": "^0.4.0",
"@types/express": "^4.17.9",
"@types/flat": "^5.0.2",
"@types/lodash": "^4.14.172",
"@types/node": "^14.14.14",
"@types/webpack": "^4.41.27",
"@types/webpack-node-externals": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"flat": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^6.0.7",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-loader": "^8.0.12",
"ts-node-dev": "^1.1.6",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2",
"webpack-shell-plugin-next": "^1.2.0",
"yalc": "^1.0.0-pre.50"
},
"dependencies": {
"@sellerspot/database-models": "^10.8.4",
"@sellerspot/universal-functions": "^1.5.9",
"@sellerspot/universal-types": "^1.8.8",
"cls-hooked": "^4.2.2",
"cookie": "^0.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"joi": "^17.3.0",
"lodash": "^4.17.21",
"mongodb": "^3.6.6",
"mongoose": "^5.12.7"
}
}