-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.31 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
{
"name": "zentity-ui",
"version": "0.0.1-experimental",
"description": "The official user interface for zentity.",
"main": "app/index.html",
"author": "Dave Moore",
"license": "Apache 2.0",
"repository": "https://github.com/zentity-io/zentity-ui",
"scripts": {
"build": "parcel build src/app/index.html -d dist/app --target browser && parcel build src/server/server.js -d dist/server --target node --bundle-node-modules",
"build-watch": "NODE_ENV=development parcel watch src/app/* -d dist/app",
"clean": "node scripts/clean.js",
"dev": "yarn build && node scripts/dev.js",
"start": "node dist/server/server.js \"@\"",
"start-watch": "nodemon dist/server/server.js \"@\"",
"test": "yarn build && jest --runInBand"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "zentity-ui.yml",
"staticOutDir": ".."
}
],
"watcherGlob": "**"
},
"dependencies": {
"@babel/runtime": "~7.12.0",
"@elastic/datemath": "~5.0.0",
"@elastic/eui": "~31.9.0",
"axios": "~0.21.0",
"body-parser": "~1.19.0",
"deep-object-diff": "~1.1.0",
"eslint-plugin-prettier": "^5.1.3",
"express": "~4.17.0",
"js-yaml": "~4.0.0",
"lodash": "~4.17.0",
"minimist": "~1.2.0",
"moment": "~2.29.0",
"prop-types": "~15.7.0",
"query-string": "~6.13.0",
"react": "~17.0.0",
"react-dom": "~17.0.0",
"react-router-dom": "~5.2.0",
"utils": "~0.3.0"
},
"devDependencies": {
"@babel/core": "~7.12.0",
"@babel/plugin-transform-runtime": "~7.12.0",
"@babel/polyfill": "~7.12.0",
"@babel/preset-env": "~7.12.0",
"@babel/preset-react": "~7.12.0",
"@eslint/js": "^9.2.0",
"babel-jest": "~29.7.0",
"concurrently": "~5.3.0",
"dayjs": "~1.10.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"globals": "^15.1.0",
"jest": "~29.7.0",
"jest-playwright-preset": "~4.0.0",
"nodemon": "~2.0.0",
"parcel": "~1.12.0",
"parcel-bundler": "~1.12.0",
"parcel-plugin-static-files-copy": "~2.5.0",
"playwright": "~1.44.0",
"react-test-renderer": "~17.0.0",
"sass": "~1.32.0",
"testcontainers": "~7.4.0"
}
}