forked from mikeygee/bip39
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 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
77
{
"name": "bip39",
"private": true,
"description": "Build custom bip39 mnemonic seed phrases",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"buildProd": "gatsby clean && gatsby build --prefix-paths",
"deploy": "npm run buildProd && npm run ghPages",
"develop": "gatsby develop",
"dev": "gatsby develop -H $HOSTNAME -p 8000",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"ghPages": "gh-pages -d public -m \"gatsby build\"",
"start": "npm run develop",
"serve": "gatsby serve",
"serveMobile": "gatsby serve -H $HOSTNAME -p 9000",
"serveProd": "gatsby serve --prefix-paths",
"test": "jest src/*.test.js"
},
"dependencies": {
"babel-plugin-styled-components": "^2.0.7",
"classnames": "^2.3.1",
"gatsby": "^4.20.0",
"gatsby-plugin-manifest": "^4.20.0",
"gatsby-plugin-offline": "5.20.0",
"gatsby-plugin-react-helmet": "^5.20.0",
"gatsby-plugin-styled-components": "^5.20.0",
"lodash.debounce": "^4.0.8",
"pbkdf2": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.4.0",
"react-window": "^1.8.7",
"sha.js": "^2.4.11",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"babel-jest": "^28.1.3",
"babel-preset-gatsby": "^2.20.0",
"gh-pages": "^4.0.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest-preprocess.js"
},
"testPathIgnorePatterns": [
"node_modules",
".cache",
"public"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"setupFiles": [
"<rootDir>/loadershim.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mikeygee/bip39"
},
"bugs": {
"url": "https://github.com/mikeygee/bip39/issues"
}
}