-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
63 lines (63 loc) · 2.03 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
{
"name": "ecommerce-integration-boilerplate",
"private": true,
"license": "MIT",
"engines": {
"node": ">=10.x"
},
"scripts": {
"build": "yarn build:api-client && yarn build:composables && yarn build:theme",
"build:api-client": "cd packages/api-client && yarn build",
"build:composables": "cd packages/composables && yarn build",
"build:theme": "cd packages/theme && yarn build",
"dev": "concurrently \"yarn:dev:*\"",
"dev:api-client": "cd packages/api-client && yarn dev",
"dev:composables": "cd packages/composables && yarn dev",
"dev:theme": "cd packages/theme && yarn dev",
"test": "yarn test:api-client && yarn test:composables && yarn test:theme",
"test:api-client": "cd packages/api-client && yarn test --passWithNoTests",
"test:composables": "cd packages/composables && yarn test --passWithNoTests",
"test:theme": "cd packages/theme && yarn test --passWithNoTests",
"lint": "eslint . --ext .ts,.vue",
"start": "cd packages/theme && yarn start"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@vue/eslint-config-typescript": "^7.0.0",
"concurrently": "^5.3.0",
"eslint": "7.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.1",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lerna": "^3.15.0",
"lint-staged": "^10.0.7",
"rimraf": "^3.0.2",
"rollup": "^1.25.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.3",
"ts-node": "^8.4.1",
"tslib": "^2.0.3",
"typescript": "~4.0",
"vue-eslint-parser": "^7.0.0"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
}
}