-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.78 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.78 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
68
69
70
71
{
"name": "@day1co/fastcomposer",
"version": "2.2.0",
"author": "fastcampus",
"main": "./dist/fastcomposer.js",
"workspaces": [
"./src/layout",
"./src/page",
"./src/state"
],
"type": "module",
"exports": {
".": {
"import": "./dist/fastcomposer.mjs",
"require": "./dist/fastcomposer.js"
},
"./dist/style.css": "./dist/style.css"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"dist"
],
"scripts": {
"serve": "vite",
"build": "vite build",
"build-all": "npm run build --workspaces && vite build",
"build-layouts": "node layouts/build.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/day1co/fastcomposer.git"
},
"dependencies": {
"@vue-a11y/focus-loop": "^0.2.0",
"splitpanes": "^2.4.1",
"vue": "^2.6.12",
"vue-smooth-dnd": "^0.8.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.0",
"@types/marked": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-vue2": "^2.2.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.16.0",
"cypress": "^5.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^7.20.0",
"global-jsdom": "^8.6.0",
"jest": "^29.0.2",
"jsdom": "^20.0.2",
"prettier": "2.0.5",
"sass": "1.32.x",
"ts-jest": "^29.0.3",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.1.0",
"vite-plugin-raw": "^1.0.3",
"vue-eslint-parser": "^7.1.0",
"vue-template-compiler": "^2.6.12"
}
}