-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "airnote",
"version": "1.0.0",
"description": "Self-destruct private notes",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "next",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minvs1/airnote.git"
},
"keywords": [
"self-destruct",
"private",
"encrypted",
"note"
],
"author": "minvs1",
"license": "ISC",
"bugs": {
"url": "https://github.com/minvs1/airnote/issues"
},
"homepage": "https://github.com/minvs1/airnote#readme",
"dependencies": {
"@material-ui/core": "^4.6.1",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.32",
"aes-js": "^3.1.2",
"isomorphic-unfetch": "^3.0.0",
"nanoid": "^2.1.7",
"next": "^9.4.4",
"notistack": "^0.9.6",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"redis": "^2.8.0"
},
"devDependencies": {
"@types/aes-js": "^3.1.0",
"@types/jest": "^24.0.23",
"@types/nanoid": "^2.1.0",
"@types/node": "^12.12.8",
"@types/react": "^16.9.11",
"@types/redis": "^2.8.14",
"babel-jest": "^26.1.0",
"jest": "^26.1.0",
"minimist": ">=1.2.3",
"typescript": "^3.9.9"
}
}