-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.21 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.21 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
76
{
"name": "react-secure-storage",
"version": "1.3.2",
"description": "This libraries is used to securely store data in local storage",
"author": "Sushin Pv",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:sushinpv/react-secure-storage.git"
},
"license": "MIT",
"keywords": [
"react secure local storage",
"react",
"local storage"
],
"dependencies": {
"crypto-js": "^4.1.1",
"murmurhash-js": "^1.0.0"
},
"scripts": {
"start": "react-scripts start",
"build:lib": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --extensions \".ts,.tsx\" && rm dist/types.d.js && cp src/lib/types.d.ts dist/",
"build:lib-ts": "rm -rf dist && NODE_ENV=production tsc src/lib/index.ts --outDir dist && rm dist/types.d.js && cp src/lib/types.d.ts dist/",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-classes": "^7.18.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/clientjs": "^0.2.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^27.5.2",
"@types/murmurhash-js": "^1.0.3",
"@types/node": "^16.11.39",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/ua-parser-js": "^0.7.36",
"clientjs": "^0.2.1",
"core-js": "^3.22.8",
"cypress": "^10.3.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.7.3",
"web-vitals": "^2.1.4"
}
}