-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "@orbs-network/twap-ui-root",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@testing-library/jest-dom": "5.x",
"@testing-library/react": "13.x",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@types/web3-provider-engine": "^14.0.1",
"@typescript-eslint/eslint-plugin": "5.x",
"@typescript-eslint/parser": "5.x",
"eslint": "8.x",
"eslint-plugin-import": "2.x",
"jest": "29.x",
"jest-environment-jsdom": "29.x",
"lerna": "6.x",
"nodemon": "2.x",
"react-scripts": "5.x",
"ts-jest": "29.x",
"typescript": "4.x"
},
"scripts": {
"clean": "lerna exec 'rm -f package-lock.json' && lerna clean -y || true && lerna bootstrap",
"build": "lerna run build",
"start": "PORT=3005 lerna run start --parallel",
"test": "lerna run test",
"test:watch": "cd packages/lib; npm run test:watch",
"publish": "npm run build && lerna publish --force-publish"
},
"prettier": {
"printWidth": 180
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"eslint-plugin-import"
],
"root": true,
"rules": {
"import/no-extraneous-dependencies": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"dependencies": {
"@defi.org/web3-candies": "^5.0.0",
"@orbs-network/twap": "^2.0.1",
"styled-components": "^6.1.12",
"uuid": "^10.0.0"
}
}