-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 895 Bytes
/
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
{
"name": "newbits",
"version": "0.1.0",
"private": true,
"author": {
"name": "Maksim Shamihulau"
},
"keywords": [
"crypto",
"wallet"
],
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"cypress:open": "cypress open"
},
"dependencies": {
"@picocss/pico": "^2.0.0-alpha1",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "10.4.14",
"bitcore-lib": "^10.0.11",
"eslint-config-next": "^13.4.8",
"memoizee": "^0.4.15",
"next": "^13.4.12",
"postcss": "8.4.21",
"ramda": "^0.29.0",
"ramda-fantasy": "^0.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"cypress": "^12.17.0",
"eslint": "^8.45.0",
"eslint-plugin-fp": "^2.3.0",
"jsdom": "^22.1.0",
"vitest": "^0.33.0"
}
}