-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "everything-sdk-js",
"version": "0.0.1",
"description": "javascript sdk for interacting with everything",
"scripts": {
"dev": "lerna run watch --stream & cd playgrounds/react && npm run dev",
"build": "lerna run build --sort",
"test": "lerna run test --stream",
"mock:api": "PORT=4050 graphql-faker ./mock/faker-schema.graphql",
"start": "cd playgrounds/react && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/near-everything/everything-sdk-js.git"
},
"author": "@elliotBraem",
"license": "MIT",
"bugs": {
"url": "https://github.com/near-everything/everything-sdk-js/issues"
},
"homepage": "https://github.com/near-everything/everything-sdk-js#readme",
"devDependencies": {
"eslint": "^8.28.0",
"graphql-faker": "^2.0.0-rc.25",
"lerna": "^6.1.0",
"prettier": "2.8.0"
},
"resolutions": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"workspaces": [
"packages/*",
"playgrounds/*"
]
}