-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
101 lines (101 loc) · 2.87 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"author": {
"name": "RestoApp team"
},
"contributors": [
{
"name": "Ilya Dolmatov",
"email": "dolmatoffilya@gmail.com"
},
{
"name": "Siziy Ivan",
"email": "xziy88@gmail.com"
},
{
"name": "Pavel Riabov",
"email": "raz200804@ya.ru"
}
],
"bundleDependencies": [],
"dependencies": {
"@webresto/worktime": "^1.1.10",
"ajv": "^8.17.1",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"crypto-puzzle": "^4.0.2",
"decimal.js": "^10.4.3",
"fix-esm": "^1.0.1",
"lodash": "^4.17.21",
"sails-build-dictionary": "^0.10.1",
"serve-static": "^1.16.2",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"uuid": "10.0.0",
"tar": "7.4.3"
},
"devDependencies": {
"@42pub/typed-sails": "^1.0.1",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.10.0",
"@types/bcryptjs": "^2.4.6",
"@types/bluebird": "^3.5.42",
"@types/bluebird-global": "^3.5.18",
"@types/body-parser": "^1.19.5",
"@types/chai": "^4.3.19",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/faker": "^4.1.12",
"@types/lodash": "^4.17.7",
"@types/mocha": "^8.2.3",
"@types/node": "^22.5.5",
"@types/uuid": "^10.0.0",
"@types/waterline": "^0.13.9",
"@types/sinon": "17.0.3",
"async": "^3.2.6",
"chai": "^4.5.0",
"dotenv": "^8.6.0",
"eslint": "^9.10.0",
"faker": "^4.1.0",
"intermock": "^0.2.5",
"mocha": "^8.4.0",
"sails-adminpanel": "3.3.0-build.52",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"sinon": "19.0.2"
},
"deprecated": false,
"description": "Local e-commerce backend core",
"keywords": [
"webresto",
"sails",
"restocore"
],
"license": "MIT",
"main": "index.js",
"types": "./index.d.ts",
"name": "@webresto/core",
"repository": {
"type": "git",
"url": "http://github.com/webresto/core.git"
},
"homepage": "http://restoapp.org",
"sails": {
"isHook": true,
"hookName": "restocore"
},
"scripts": {
"_preinstall_": "[ -d \".git\" ] && git config core.hooksPath .github/git_hooks",
"test:init": "cd ./test/fixture && npm i --no-package-lock --prefix ./ ",
"test:install": "cd ./test/fixture && npm i --no-package-lock --prefix ./",
"test": "mocha -r ts-node/register test/bootstrap.ts './test/{,!(fixture)/**}/*.test.ts' --exit",
"test:pattern": "mocha -r ts-node/register test/bootstrap.ts './test/{,!(fixture)/**}/*.test.ts' --exit --grep=${PATTERN}",
"test:updb": "cd ./test/fixture && db-migrate up",
"test:release": "DATASTORE=postgres PG_HOST=127.0.0.1 mocha -r ts-node/register test/bootstrap.ts './test/{,!(fixture)/**}/*.test.ts' --exit --grep=${PATTERN}",
"build": "tsc",
"format": "npx prettier --write \"**/*.ts\"",
"tslint": "npx eslint ."
},
"appId": "restocore",
"version": "2.2.0"
}