-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.24 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
{
"private": true,
"workspaces": [
"packages/*"
],
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"lint": "eslint --ext .js,.ts ./packages",
"prepublish": "yarn run build",
"release": "yarn run test && standard-version && git push --follow-tags && yarn publish"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@types/js-cookie": "^2.2.7",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"jest-websocket-mock": "^2.2.0",
"laravel-echo": "^1.10.0",
"mock-socket": "^9.0.3",
"rollup": "^2.10.2",
"rollup-plugin-typescript2": "^0.27.1",
"standard-version": "^8.0.1",
"tslib": "^1.10.0",
"typescript": "^3.6.3"
},
"dependencies": {}
}