-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.35 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.35 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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@integraflow/web",
"license": "MIT",
"version": "0.0.3",
"description": "Integraflow provides tools to redefine customer experience with organic feedback and behavioural data in real-time.",
"keywords": [
"Integraflow",
"surveys",
"customer experience",
"experience management"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack",
"clean": "rimraf ./dist",
"dev": "webpack --watch",
"dist": "NODE_ENV=production webpack",
"semantic-release": "semantic-release",
"snippet": "tsc -t es5 --outFile dist/snippet.js src/web/snippet.ts && uglifyjs dist/snippet.js -o dist/snippet.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntegraflowHQ/integraflow-web.git"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"author": "Integraflow <dev@useintegraflow.com>",
"bugs": {
"url": "https://github.com/IntegraflowHQ/integraflow-web/issues"
},
"homepage": "https://github.com/IntegraflowHQ/integraflow-web#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"autoprefixer": "^10.4.15",
"babel-jest": "^29.6.2",
"css-loader": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react": "7.33.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-fetch-mock": "^3.0.3",
"jest-preset-preact": "^4.1.0",
"postcss": "^8.4.28",
"postcss-loader": "^7.3.3",
"postcss-prefix-selector": "^1.16.0",
"postcss-preset-env": "^9.1.1",
"preact-cli": "^3.5.0",
"preact-render-to-string": "^6.2.0",
"prettier": "^1.19.1",
"rimraf": "^5.0.1",
"sass": "^1.43.5",
"sass-loader": "^12.3.0",
"semantic-release": "^21.1.2",
"style-loader": "^3.2.1",
"tailwindcss": "^3.3.3",
"terser": "^5.7.2",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"lucide-preact": "^0.268.0",
"preact": "10.16.0",
"react-date-picker": "^10.5.0"
},
"jest": {
"transformIgnorePatterns": [
"!node_modules/"
],
"setupFiles": [
"<rootDir>/tests/__mocks__/setupTests.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tests/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/tests/__mocks__/styleMock.js"
}
},
"release": {
"branches": [
"main"
]
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/git",
{
"assets": [
"src/utils/version.ts",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}