-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "uuid-ui",
"version": "1.0.0",
"type": "module",
"description": "Quick way to work with uuid.",
"private": true,
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "concurrently \"npm run watch\" \"web-dev-server --config web-dev-server.config.js\"",
"test": "node --test ./tests/*"
},
"repository": {
"type": "git",
"url": "github.com/bavix/uuid-ui"
},
"keywords": [
"uuid",
"convertor",
"convert",
"uuid-convertor",
"uuid-ui"
],
"author": "Maksim Babichev",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@creativebulma/bulma-tooltip": "^1.2.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@theme-toggles/react": "^4.1.0",
"@web/dev-server": "^0.4.6",
"babel-preset-minify": "^0.5.2",
"bulma": "^1.0.2",
"concurrently": "^9.0.1",
"notiflix": "^3.2.7",
"preact": "^10.24.3",
"react-helmet-async": "^2.0.5",
"rollup": "^4.24.2",
"rollup-plugin-cleandir": "^3.0.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-import-css": "^3.5.6",
"test": "^3.3.0",
"uuid": "^10.0.0"
}
}