-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.35 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
{
"name": "micro-lc-notification-center",
"version": "2.1.1",
"description": "micro-lc plugin to handle notifications",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"es2015": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"unpkg": "dist/unpkg/micro-lc-notification-center.esm.js",
"files": [
"dist/"
],
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:micro-lc/micro-lc-notification-center.git"
},
"scripts": {
"prepare": "husky install",
"clean": "rimraf coverage dist yarn-error.log",
"clean:install": "rimraf node_module .yarn/cache",
"lint:script": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:style": "stylelint 'src/**/*.less'",
"lint": "run-p lint:style lint:script",
"lint-fix": "run-p 'lint:style --fix' 'lint:script --fix'",
"build:types": "tsc --project scripts/tsconfig.types.json",
"build:es": "tsc --project scripts/tsconfig.es.json",
"build:cjs": "tsc --project scripts/tsconfig.cjs.json",
"build:unpkg": "vite build --mode production",
"build": "run-p build:cjs build:es build:types build:unpkg",
"start:server": "mock-server --port 8000 --root __server__ --watch",
"start": "vite",
"test": "jest",
"coverage": "jest --coverage",
"docker:build": "./scripts/build.sh",
"docker:run": "./scripts/run.sh",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons": "^4.7.0",
"@braintree/sanitize-url": "^6.0.0",
"antd": "4.20.4",
"dayjs": "^1.11.3",
"lit": "^2.2.6",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/preset-typescript": "^7.16.7",
"@open-wc/testing-helpers": "^2.1.2",
"@staticdeploy/mock-server": "^3.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@types/babel__core": "^7.1.19",
"@types/eslint": "^8.4.2",
"@types/jest": "^27.5.0",
"@types/less": "^3.0.3",
"@types/node": "^17.0.32",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.11",
"@types/rimraf": "^3.0.2",
"@types/testing-library__jest-dom": "^5.14.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"construct-style-sheets-polyfill": "^3.1.0",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-fetch-mock": "^3.0.3",
"less": "^4.1.2",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"postcss": "^8.4.13",
"postcss-less": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.72.1",
"rollup-plugin-lit-css": "^4.0.0",
"rollup-plugin-visualizer": "^5.6.0",
"stylelint": "^14.8.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^25.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-plugin-dynamic-import": "^0.9.3",
"vite-tsconfig-paths": "^3.4.1"
}
}