-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.27 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
{
"name": "dot-map-renderer",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.18.6",
"@pixi/eslint-config": "^3.0.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"babel-loader": "^8.2.4",
"cra-template": "1.2.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.9",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"terser": "^3.14.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.6",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"workspaces-run": "^1.0.1"
},
"workspaces": [
"packages/*"
],
"keywords": [
"map",
"dot",
"world"
],
"author": "moretall",
"scripts": {
"start:dev": "rollup -wc & npm run start:dev --workspace=packages/example & tsc -w",
"lint": "eslint packages --ext .ts",
"lint:fix": "eslint --fix packages --ext .ts",
"build": "rollup -c && tsc",
"publish": "npm publish --access=public",
"publish:all": "npm publish -w ./packages/",
"patch:all": "npm version patch -w ./packages/ && npm version",
"version": "ts-node scripts/fixPeerVersions.ts",
"prepare": "husky install",
"test": "jest",
"test:dev": "jest --watch"
},
"main": "./bundles/dist/umd/bundle.js",
"types": "./bundles/dist/index.d.ts",
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
]
}
}