-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.51 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
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
{
"name": "react-mustache-template-component",
"version": "2.1.6",
"description": "Mustache Template Component for React",
"author": {
"name": "J.W. Lagendijk",
"email": "jelte@caffcode.com"
},
"repository": {
"url": "https://github.com/j3lte/react-mustache-template-component",
"type": "git"
},
"homepage": "https://github.com/j3lte/react-mustache-template-component",
"bugs": "https://github.com/j3lte/react-mustache-template-component/issues",
"license": "MIT",
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"testEnvironment": "jsdom",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"mustache",
"template",
"sanitize"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --coverage",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs --quiet",
"local-storybook": "npm run build-storybook && npx http-server ./docs",
"prettier": "prettier --write src/*",
"eslint": "eslint src/**/*.ts*",
"lint": "npm run test:coverage && npm run prettier && npm run eslint"
},
"peerDependencies": {
"react": ">= 16.8.4 || ^17.0.0 || ^18.0.0",
"react-dom": ">= 16.8.4 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@storybook/addon-actions": "^7.2.1",
"@storybook/addon-controls": "^7.2.1",
"@storybook/addon-essentials": "^7.2.1",
"@storybook/addon-interactions": "^7.2.1",
"@storybook/addon-links": "^7.2.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.2.1",
"@storybook/react": "^7.2.1",
"@storybook/react-webpack5": "^7.2.1",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/dompurify": "^3.0.2",
"@types/jest": "^29.5.3",
"@types/mustache": "^4.2.2",
"@types/object-hash": "^3.0.2",
"@types/react": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"pre-commit": "^1.2.2",
"prettier": "^2.8.3",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.2.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-externals": "^5.0.1",
"rollup-plugin-typescript2": "^0.34.1",
"storybook": "^7.2.1",
"ts-jest": "^29.0.3",
"typescript": "^5.1.6",
"webpack": "5.76.0"
},
"pre-commit": [
"lint"
],
"dependencies": {
"dompurify": "^3.2.4",
"mustache": "^4.2.0"
}
}