-
Notifications
You must be signed in to change notification settings - Fork 237
/
package.json
87 lines (87 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "netlify-identity-widget",
"description": "Netlify Identity widget for easy integration",
"version": "1.9.2",
"author": "Matt Biilmann <[email protected]>",
"bugs": {
"url": "https://github.com/netlify/netlify-identity-widget/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-react-jsx": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"auto-changelog": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"caniuse-lite": "^1.0.30000792",
"cross-env": "^7.0.0",
"css-loader": "^4.0.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.5",
"file-loader": "^6.0.0",
"gh-release": "^5.0.0",
"gotrue-js": "^0.9.26",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"mkdirp": "^1.0.0",
"mobx": "^5.15.4",
"mobx-preact": "^3.0.0",
"npm-run-all2": "^5.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.3",
"preact": "8.5.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"source-map-loader": "^1.0.1",
"url-loader": "^4.1.0",
"webpack": "^4.0.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.0.0",
"webpack-node-externals": "^2.5.0"
},
"homepage": "https://identity.netlify.com",
"keywords": [
"authentication",
"identity",
"netlify"
],
"license": "MIT",
"main": "./build/netlify-identity",
"releaseVersion": "v1",
"repository": "netlify/netlify-identity-widget",
"scripts": {
"build": "run-p build:*",
"build:bundle": "cross-env NODE_ENV=production webpack --config webpack.config.babel.js",
"build:umd": "cross-env NODE_ENV=production webpack --config webpack.umd.config.babel.js",
"changelog": "auto-changelog --template keepachangelog -p && git add CHANGELOG.md",
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --progress --config webpack.config.babel.js",
"format": "prettier --write 'src/**/*.js' '*.js'",
"format-preview": "prettier --list-different 'src/**/*.js' '*.js'",
"format-check": "prettier --check 'src/**/*.js' '*.js'",
"prebuild": "rimraf build && mkdirp build",
"prepublish": "run-s build",
"prestart": "run-s build",
"publish": "git push && git push --tags && gh-release",
"react-demo": "cd example && yarn && yarn start",
"release": "node ./script/release.js",
"lint": "eslint src",
"test": "run-s lint format-check test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"version": "run-s release changelog"
}
}