This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "@vue-storefront/multistore",
"version": "1.0.1",
"main": "server/index.js",
"author": "Fifciu",
"license": "MIT",
"types": "server/index.d.ts",
"engines": {
"node": ">=16.x"
},
"scripts": {
"build": "rimraf server && rollup -c",
"dev": "rollup -c -w",
"test": "cross-env APP_ENV=test jest",
"prepublish": "yarn build"
},
"files": [
"server/**/*"
],
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@nuxtjs/composition-api": "^0.29.3",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^2.3.3",
"@types/express": "^4.17.15",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@vue-storefront/core": "^2.7.5",
"@vue-storefront/middleware": "^2.7.5",
"@vue/eslint-config-typescript": "^7.0.0",
"cross-env": "^6.0.3",
"dotenv": "^16.0.3",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.6.0",
"express": "^4.18.2",
"husky": "^7.0.4",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"supertest": "^6.3.3",
"ts-jest": "^24.2.0",
"ts-node": "^8.4.1",
"tslib": "^2.1.0",
"typescript": "^4.2.2"
},
"publishConfig": {
"access": "public"
}
}