-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.15 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.15 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
{
"name": "stakes.social",
"version": "1.0.0",
"license": "MIT",
"description": "Stakes.social is the first official Dapp built on the Dev Protocol, released in June 2020. Stakes.social is a new sponsor platform where both developers and sponsors are rewarded with tokens if they support their favorite projects by staking DEV tokens.",
"repository": "https://github.com/dev-protocol/stakes.social.git",
"author": "Dev Protocol",
"scripts": {
"start": "yarn --cwd packages/web start:prod",
"dev": "yarn --cwd packages/web start:dev",
"build": "lerna run build --include-dependencies",
"lint": "eslint --fix -c ./.eslintrc.json './packages/**/*.{ts,tsx}'",
"format": "prettier --ignore-path .gitignore --write .",
"test": "lerna run test",
"clean": "lerna run clean && lerna clean --y",
"prepare": "husky install"
},
"devDependencies": {
"@types/bl": "5.1.4",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"concurrently": "9.1.2",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.1.7",
"lerna": "5.6.2",
"lint-staged": "15.4.3",
"nodemon": "3.1.9",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"rimraf": "6.0.1",
"serve": "14.2.4",
"ts-node": "10.9.2",
"tsconfig-paths": "4.1.0",
"typescript": "5.7.3",
"wait-on": "8.0.2"
},
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@tailwindcss/forms",
"@tailwindcss/forms/**"
]
},
"lint-staged": {
"*.{.ts,tsx}": [
"eslint --fix -c ./.eslintrc.json"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"bl": "6.0.19",
"ipfs-http-client": "49.0.4",
"truncate-eth-address": "1.0.2"
},
"resolutions": {
"@types/react": "^17.0.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}