-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.23 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
{
"name": "demo",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nukedb": "docker compose down -v && yarn compose",
"first-init": "yarn setup && yarn seed && yarn develop",
"setup": "yarn && yarn compose && nx run api-medusa:migrate",
"seed": "nx run api-medusa:seed",
"compose": "docker compose up -d ",
"develop": "yarn setup && yarn start",
"start": "npx nx run-many --target=serve --all",
"build": "nx build",
"test": "nx test",
"postinstall": "remix setup node",
"clean": "npx nx run-many --target=clean --all && find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' + && yarn"
},
"private": true,
"dependencies": {
"@medusajs/medusa-js": "^1.2.3",
"@medusajs/medusa": "^1.3.4",
"@nrwl/remix": "14.4.2",
"@remix-run/react": "^1.0.6",
"@remix-run/serve": "^1.0.6",
"classnames": "^2.3.1",
"medusa-interfaces": "^1.3.1",
"medusa-payment-manual": "^1.0.16",
"medusa-payment-stripe": "^1.1.41",
"react-dom": "^17.0.2",
"react": "^17.0.2",
"remix": "^1.0.6",
"tslib": "^2.3.0",
"typeorm": "^0.2.36",
"use-debounce": "^8.0.3"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.18.6",
"@medusajs/medusa-cli": "^1.3.1",
"@nrwl/cli": "14.4.3",
"@nrwl/eslint-plugin-nx": "14.4.3",
"@nrwl/jest": "14.4.3",
"@nrwl/linter": "14.4.3",
"@nrwl/node": "^14.4.3",
"@nrwl/react": "^14.4.3",
"@nrwl/workspace": "14.4.3",
"@remix-run/dev": "^1.0.6",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.4",
"@types/jest": "27.4.1",
"@types/node": "16.11.7",
"@types/react-dom": "^17.0.9",
"@types/react": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-preset-medusa-package": "^1.1.19",
"concurrently": "^7.3.0",
"eslint-config-prettier": "8.1.0",
"eslint": "~8.15.0",
"jest": "27.5.1",
"nx": "14.4.3",
"prettier": "^2.6.2",
"tailwindcss": "^3.1.6",
"ts-jest": "27.1.4",
"ts-node": "~10.8.0",
"typescript": "~4.7.2"
},
"workspaces": [
"apps/*",
"libs/*"
]
}