generated from xendarboh/remix-stack-minimal-humanode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.51 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
{
"name": "human-collectives",
"private": true,
"description": "Collective Human Identities; Private, Zero-Knowledge, Sybil-Resistant, Bio-Authenticated.",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:db": "NODE_ENV=production npm run db:migrate",
"build:hardhat": "npx hardhat compile",
"build:remix": "remix build",
"coverage:solidity": "hardhat clean && NODE_ENV=test TS_NODE_TRANSPILE_ONLY=1 hardhat coverage",
"db:migrate": "cd db && npx knex migrate:latest",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:db": "npm run db:migrate",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -i ./styles/app.css -o ./app/tailwind.css",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:solhint": "solhint 'contracts/**/*.sol'",
"start": "dotenv -- remix-serve build",
"test": "NODE_ENV=test run-s test:*",
"test:db": "dotenv -e .env.test -- npm run db:migrate",
"test:hardhat": "npm run build:hardhat",
"test:mocha": "dotenv -e .env.test -- ts-mocha 'test/**/*.ts' --exit"
},
"dependencies": {
"@remix-run/node": "^1.3.5",
"@remix-run/react": "^1.3.5",
"@remix-run/serve": "^1.3.5",
"better-sqlite3": "^7.5.3",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.6",
"daisyui": "^2.17.0",
"ethers": "^5.6.9",
"jose": "^4.8.1",
"knex": "^2.1.0",
"nanoid": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix-auth": "^3.2.2",
"remix-auth-oauth2": "^1.2.2",
"snarkjs": "^0.4.22",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@remix-run/dev": "^1.3.5",
"@remix-run/eslint-config": "^1.3.5",
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"chai": "^4.3.6",
"circom_tester": "^0.0.14",
"dotenv-cli": "^6.0.0",
"eslint": "^8.11.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-prettier": "^4.0.0",
"hardhat": "^2.10.1",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"prettier-plugin-tailwindcss": "^0.1.8",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"tailwindcss": "^3.0.24",
"ts-mocha": "^10.0.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=16"
}
}