-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.93 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.93 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
61
62
63
64
65
66
67
{
"name": "@readapt/shared-components",
"version": "1.8.4",
"main": "dist/readapt-shared-components.common.js",
"module": "dist/readapt-shared-components.common.js",
"types": "dist/types.d.ts",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name readapt-shared-components src/index.ts && yarn types",
"clean": "shx rm -rf dist",
"test": "yarn test:unit",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"types": "rollup -c rollup.config.js"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ContentSquare/readapt.git"
},
"dependencies": {
"@readapt/settings": "^1.8.4",
"@readapt/visual-engine": "^1.8.4",
"bootstrap": "~5.0.0",
"bootstrap-vue": "~2.23.1",
"core-js": "^3.8.3"
},
"peerDependencies": {
"vue": "~2.7.14",
"vue-i18n": "~8.28.2",
"vuex": "~3.6.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-plugin-unit-jest": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "^27.0.0",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.6.0",
"jest": "^27.1.0",
"prettier": "^2.4.1",
"sass": "^1.57.1",
"sass-loader": "^12.0.0",
"ts-jest": "^27.0.4",
"typescript": "~4.9.4",
"vue-template-compiler": "^2.7.14"
}
}