-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.49 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
{
"name": "my-evershop-app",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"setup": "evershop install",
"lint": "eslint scripts/**/*.js",
"lint:fix": "eslint scripts/**/*.js --fix",
"prebuild": "node scripts/compile-extensions.js",
"build": "evershop build",
"start": "evershop start",
"start:debug": "evershop start --debug",
"dev": "evershop dev",
"user:create": "evershop user:create",
"db:export": "./scripts/db-dump.sh",
"db:export:versioned": "node scripts/export-versioned.js",
"db:clear": "node scripts/clear-data.js",
"db:import": "./scripts/db-restore.sh",
"postinstall": "echo 'Applying patches...*' && patch-package && chmod -R u+rwx node_modules/"
},
"dependencies": {
"@evershop/evershop": "2.0.1",
"@evershop/google_login": "^2.1.1",
"@evershop/s3_file_storage": "^2.0.0",
"@luca324/yandex-evershop-s3": "^2.0.0"
},
"workspaces": [
"themes/*"
],
"devDependencies": {
"@parcel/watcher": "2.5.1",
"@types/config": "3.3.5",
"@types/express": "5.0.3",
"@types/node": "24.7.0",
"@types/pg": "8.15.5",
"@types/react": "19.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"execa": "9.6.0",
"patch-package": "^8.0.1",
"postinstall-postinstall": "^2.1.0",
"typescript": "5.9.3"
}
}