forked from zendesk/url_builder_app
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "url_builder_app",
"version": "3.1.0",
"description": "A Zendesk plugin to render URLs",
"keywords": [
"zendesk",
"app",
"framework",
"url"
],
"author": "Ibotta",
"license": "Apache-2.0",
"engines": {
"node": ">=20.17.0"
},
"type": "module",
"scripts": {
"test": "jest",
"watch": "webpack --watch --mode development",
"build:dev": "webpack --mode development",
"build": "webpack --mode production",
"lint": "standard",
"start": "zcli apps:server dist",
"validate": "zcli apps:validate dist"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@babel/runtime-corejs3": "^7.25.6",
"@faker-js/faker": "^7.6.0",
"@zendesk/zcli": "^1.0.0-beta.32",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.38.1",
"css-loader": "^6.11.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.47",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^8.5.1",
"standard": "^17.1.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@zendeskgarden/css-bedrock": "^9.1.1",
"postcss-advanced-variables": "^4.0.0",
"postcss-atroot": "^0.2.4",
"postcss-extend-rule": "^4.0.0",
"postcss-nested": "^6.2.0",
"postcss-property-lookup": "^3.0.0"
}
}