-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 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
{
"name": "@flowforge/forge-ui-components",
"version": "0.7.1",
"description": "",
"author": {
"name": "FlowForge Inc."
},
"license": "Apache-2.0",
"homepage": "https://github.com/flowforge/forge-ui-components#readme",
"main": "dist/forge-ui-components.js",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flowforge/forge-ui-components.git"
},
"bugs": {
"url": "https://github.com/flowforge/forge-ui-components/issues"
},
"engines": {
"node": ">=16.x"
},
"peerDependencies": {
"@heroicons/vue": "^1.0.6",
"marked": "^4.0.12",
"vue": "^3.2.21"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-unit-jest": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/test-utils": "^2.2.6",
"@vue/vue3-jest": "^27.0.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^27.5.1",
"dotenv-webpack": "^7.1.1",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-vue": "^9.8.0",
"jest": "^27.5.1",
"postcss": "^8.4.19",
"postcss-import": "^14.1.0",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^6.7.1",
"rollup": "^3.5.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.56.1",
"sass-loader": "^12.6.0",
"tailwindcss": "^3.2.4"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup -c",
"build-docs": "vue-cli-service build",
"lint": "eslint --ext .js,.vue src/ tests/",
"lint:fix": "npm run lint -- --fix",
"test": "npm run test:unit",
"test:unit": "vue-cli-service test:unit"
}
}