-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "auction-bot",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"preinstall": "cd ../core && npm i && npm run build",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext \".js,.ts\" --ignore-path .gitignore . --max-warnings=0",
"debug": "node --inspect node_modules/.bin/nuxt",
"test": "jest"
},
"repository": {
"url": "https://github.com/sidestream-tech/unified-auctions-ui"
},
"lint-staged": {
"*.{js,ts}": "eslint --max-warnings=0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/dotenv": "^1.4.1",
"auctions-core": "file:../core",
"bignumber.js": "^9.0.1",
"core-js": "^3.15.2",
"nuxt": "^2.15.8",
"twitter-api-v2": "^1.15.1"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@types/node": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.4.2",
"babel-loader": "^8.2.2",
"eslint": "^7.31.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^27.4.3",
"lint-staged": "^10.5.3",
"prettier": "^2.3.2",
"ts-jest": "^27.1.0",
"typescript": "^4.3.5"
}
}