-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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": "ecommerce-integration-odoo",
"private": true,
"license": "MIT",
"scripts": {
"build": "lerna run build",
"dev": "concurrently --names \"Frontend\" \"npm run dev:app\"",
"dev:app": "cd playground-nuxt/app && npm run dev",
"dev:server": "cd playground-nuxt/server && npm run dev",
"test": "lerna run test",
"changesets:version": "yarn changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install && yarn prepare:docs",
"changesets:publish": "yarn build && yarn changeset publish",
"prepare:docs": "cd docs && yarn install && yarn api-extract && yarn copy-changelog",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"devDependencies": {
"-": "^0.0.1",
"@babel/core": "^7.10.5",
"@changesets/cli": "^2.26.2",
"@commitlint/config-conventional": "^17.6.7",
"@loopmode/crosslink": "^0.4.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^27.4.0",
"@types/node": "^12.12.14",
"@types/supertest": "~2.0.12",
"commitizen": "^4.3.0",
"concurrently": "^8.0.1",
"cross-env": "^6.0.3",
"husky": "^8.0.0",
"jest": "^27.4.7",
"lerna": "^6.5.1",
"lint-staged": "^10.0.7",
"msw": "^0.49.1",
"nodemon": "^2.0.22",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"supertest": "~6.2.4",
"ts-jest": "^27.1.3",
"ts-node": "^8.4.1",
"tslib": "^2.1.0",
"typescript": "^4.2.2",
"webpack-bundle-analyzer": "^3.5.2"
},
"engines": {
"node": ">=16.x"
},
"workspaces": [
"packages/*",
"playground-nuxt/*"
],
"dependencies": {
"@commitlint/prompt": "^17.6.7",
"@nuxt/devtools": "^0.7.0",
"@vue-storefront/cli": "^4.3.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"overrides": {
"react-json-view": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"version": "0.0.0"
}