-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "css-houdini-squircle",
"version": "0.3.0",
"description": "A tiny CSS Houdini module that allows to add a squircle shape to HTML elements",
"main": "lib/squircle.js",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PavelLaptev/squircle-houdini-css"
},
"homepage": "https://github.com/PavelLaptev/squircle-houdini-css",
"scripts": {
"dev": "next dev",
"build": "next build",
"watch:lib-build": "nodemon --watch lib/squircle.js --exec 'npm run lib-build'",
"lib-build": "uglifyjs lib/squircle.js -o squircle.min.js && cp squircle.min.js public/squircle.min.js",
"start": "next start",
"lint": "next lint"
},
"dependencies": {},
"devDependencies": {
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.4",
"css-paint-polyfill": "^3.4.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"next": "13.4.4",
"nodemon": "^2.0.22",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.63.4",
"typescript": "5.1.3",
"uglify-js": "^3.17.4"
}
}