-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
124 lines (124 loc) · 3.74 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@spartez/vue-atlaskit",
"version": "0.3.8",
"description": "Unofficial Vue UI library, built according to the Atlassian Design Guidelines.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"unpkg": "dist/index.min.js",
"scripts": {
"build": "rimraf dist && rollup -c",
"storybook": "start-storybook -p 9001 -s ./public -c .storybook",
"lint": "eslint src --ext .js,.vue",
"lint-fix": "eslint src --fix --ext .js,.vue",
"test": "npm run lint && jest && concurrently 'npm run storybook' 'npm run cypress:test' -k -s first",
"unit": "jest",
"test:watch": "jest --verbose --watchAll --notify",
"build-storybook": "build-storybook -c .storybook -o docs",
"generate-icons": "node build/generate-icons.js",
"cypress:test": "wait-on http://localhost:9001 && cypress run",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"release": "np",
"version": "npm run build-storybook",
"prepublishOnly": "npm run build"
},
"sideEffects": [
"*.css"
],
"keywords": [
"vue",
"atlassian"
],
"author": "Adrian Bilicz",
"license": "MIT",
"devDependencies": {
"@atlaskit/css-reset": "^6.3.16",
"@atlaskit/icon": "^16.0.9",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime-corejs3": "^7.11.2",
"@betit/rollup-plugin-rename-extensions": "^0.1.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@storybook/vue": "^5.1.9",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-preset-vue": "^2.0.2",
"concurrently": "^5.2.0",
"core-js": "^3.6.5",
"cypress": "^4.5.0",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^5.16.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-vue": "7.0.0",
"faker": "^4.1.0",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"husky": "^1.3.1",
"install": "^0.13.0",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"np": "^6.5.0",
"p-debounce": "^2.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.28.1",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"storybook-addon-root-attribute": "^1.0.2",
"storybook-addon-vue-info": "^1.0.1",
"vue": "^2.7.14",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.12",
"wait-on": "^5.0.0",
"webpack": "^4.44.2"
},
"peerDependencies": {
"vue": ">= 2.5.0"
},
"lint-staged": {
"*.{js,vue}": [
"jest --bail --findRelatedTests",
"npm run lint-fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@atlaskit/adf-schema": "^12.0.0",
"@atlaskit/icon-file-type": "^6.3.1",
"@atlaskit/icon-object": "^6.2.2",
"@atlaskit/icon-priority": "^6.2.2",
"@atlaskit/tokens": "^1.28.2",
"date-fns": "^2.0.0-beta.2",
"date-fns-tz": "^1.1.6",
"popper.js": "^1.15.0",
"prosemirror-history": "^1.1.3",
"prosemirror-schema-list": "^1.1.2",
"prosemirror-tables": "^1.3.0",
"prosemirror-utils": "^0.9.6",
"prosemirror-view": "^1.15.2",
"tiptap": "^1.32.2",
"tiptap-commands": "^1.14.1",
"vue-promised": "^1.2.0"
},
"resolutions": {
"prosemirror-model": "1.8.2"
}
}