-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 2.15 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
{
"name": "react-pattern-lock",
"version": "12.0.12",
"description": "Android's pattern lock",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"jsnext:main": "lib-esm/index.js",
"module": "lib-esm/index.js",
"scripts": {
"build": "tsc && tsc --outDir lib-esm -m es6",
"build:watch": "tsc -w",
"dev": "webpack serve --progress --mode development --config demos/webpack.config.js",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WinterCore/react-pattern-lock.git"
},
"keywords": [
"react",
"pattern",
"lock",
"android",
"3x3",
"security"
],
"author": "WinterCore <[email protected]> (http://www.wintercore.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/WinterCore/react-pattern-lock/issues"
},
"homepage": "https://github.com/WinterCore/react-pattern-lock#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@hot-loader/react-dom": "^17.0.1",
"@types/classnames": "^2.3.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.5",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"style-loader": "^3.3.0",
"styled-components": "^5.3.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-build-notifier": "^2.3.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
},
"peerDependencies": {
"react": "^16.9.0"
},
"files": [
"lib",
"lib-esm"
],
"dependencies": {
"classnames": "^2.3.1",
"prop-types": "^15.7.2",
"styled-components": "^5.3.1"
}
}