-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
{
"name": "netlify-identity-widget",
"description": "Netlify Identity widget for easy integration",
"version": "2.0.3",
"author": "Matt Biilmann <matt@netlify.com>",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/netlify/netlify-identity-widget/issues"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/eslint-parser": "^7.28.0",
"@babel/plugin-proposal-decorators": "^7.28.6",
"@babel/plugin-transform-class-properties": "^7.28.6",
"@babel/plugin-transform-react-jsx": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.0",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.0.0",
"@rollup/plugin-babel": "^6.1.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"gotrue-js": "1.0.1",
"husky": "^9.0.0",
"jsdom": "^28.0.0",
"mobx": "^6.15.0",
"npm-run-all2": "^8.0.0",
"postcss": "^8.4.0",
"postcss-import": "^16.0.0",
"postcss-nested": "^7.0.0",
"postcss-preset-env": "^11.0.0",
"preact": "^10.28.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"terser": "^5.0.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.54.0",
"vite": "^7.0.0",
"vitest": "^4.0.18"
},
"homepage": "https://identity.netlify.com",
"keywords": [
"authentication",
"identity",
"netlify"
],
"browserslist": [
"defaults",
"not IE 11"
],
"license": "MIT",
"type": "module",
"main": "./build/netlify-identity-widget.js",
"repository": "netlify/netlify-identity-widget",
"scripts": {
"build": "run-p build:*",
"build:demo": "vite build",
"build:umd": "BUILD_MODE=lib vite build",
"dev": "vite",
"format": "prettier --write 'src/**/*.{js,ts,tsx}' '*.{js,ts}'",
"format-check": "prettier --check 'src/**/*.{js,ts,tsx}' '*.{js,ts}'",
"prebuild": "rimraf build",
"prepare": "husky",
"lint": "eslint src",
"test": "run-s lint format-check test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest"
}
}