forked from evershopcommerce/evershop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.36 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.36 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
{
"name": "evershop",
"version": "2.1.0",
"type": "module",
"description": "A shopping cart platform with Express, React and Postgres",
"workspaces": [
"packages/*",
"extensions/*"
],
"scripts": {
"dev": "node ./packages/evershop/dist/bin/dev/index.js",
"start": "node ./packages/evershop/dist/bin/start/index.js",
"build": "node ./packages/evershop/dist/bin/build/index.js",
"build-fast": "evershop build -- --skip-minify",
"setup": "evershop install",
"theme:active": "evershop theme:active",
"theme:twizz": "evershop theme:twizz",
"theme:create": "evershop theme:create",
"compile": "rimraf ./packages/evershop/dist && cd ./packages/evershop && swc ./src/ -d dist/ --config-file .swcrc --copy-files --strip-leading-paths",
"compile:db": "rimraf ./packages/postgres-query-builder/dist && cd ./packages/postgres-query-builder && swc ./src/ -d dist/ --config-file .swcrc --copy-files --strip-leading-paths",
"compile:tsc": "rimraf ./packages/evershop/dist && cd ./packages/evershop && tsc && copyfiles -u 1 \"src/**/*.{graphql,scss,json}\" dist",
"start:debug": "node ./packages/evershop/dist/bin/start/index.js --debug",
"test": "ALLOW_CONFIG_MUTATIONS=true NODE_OPTIONS=--experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./packages",
"prepare": "husky install"
},
"author": "The Nguyen (https://evershop.io)",
"license": "GNU GENERAL PUBLIC LICENSE 3.0",
"devDependencies": {
"@parcel/watcher": "^2.5.1",
"@swc/cli": "^0.7.7",
"@swc/core": "^1.11.29",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"copyfiles": "^2.4.1",
"cypress": "^13.15.1",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"execa": "^9.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"minimatch": "^10.0.1",
"prettier": "2.8.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^6.0.1",
"swc-minify-webpack-plugin": "^2.1.3",
"tailwindcss": "^3.2.1",
"typescript": "^5.8.3",
"webpack-bundle-analyzer": "^4.10.2"
},
"dependencies": {
"@types/react-slick": "^0.23.13",
"@types/uuid": "^10.0.0",
"uuid": "^13.0.0"
}
}