-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "app-everdragons2",
"version": "0.1.0",
"private": true,
"description": "A dApp for the Everdragons2 NFT Project",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ndujalags/app-everdragons2.git"
},
"author": "Francesco Sullo <[email protected]>",
"license": "MIT",
"dependencies": {
"@ethersproject/contracts": "^5.5.0",
"body-parser": "^1.19.0",
"bootstrap": "5.1.3",
"chalk": "^2.4.2",
"cli-spinner": "^0.2.10",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"discord-oauth2": "^2.8.0",
"dotenv": "^9.0.2",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.5.4",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"knex": "^0.21.12",
"local-storage": "^1.4.2",
"lodash": "^4.17.21",
"node-fetch": "^3.1.0",
"pg": "^8.7.1",
"query-string": "^7.0.1",
"react-bootstrap": "^2.1.2",
"react-device-detect": "^2.1.2",
"react-markdown-it": "^1.0.2",
"react-scroll": "^1.8.4",
"react-webcam": "^5.2.3",
"require-or-mock": "^0.2.1",
"simple-json-db": "^1.2.3",
"superagent": "^4.1.0",
"video-react": "^0.14.1"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.13.15",
"html-webpack-plugin": "^5.5.0",
"@babel/preset-react": "^7.13.13",
"@testing-library/jest-dom": "^5.16.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-jest": "^27.1.1",
"babel-loader": "^8.2.2",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"enzyme": "^3.11.0",
"eslint": "^7.24.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.3",
"husky": "^7.0.4",
"jest": "^27.1.0",
"mocha": "^8.2.1",
"node-polyfill-webpack-plugin": "^1.1.0",
"nyc": "^15.1.0",
"pino-toke": "^2.0.0",
"prettier": "2.5.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^6.2.1",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"start": "node .",
"start:dev": "NODE_ENV=development node .",
"build": "./generate-missing-deployed-json.sh && webpack",
"format": "npx prettier --write .",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "eslint client/**/*.js",
"lint:server": "eslint server/**/*.js",
"lint:client:fix": "eslint client/**/*.js --fix",
"lint:server:fix": "eslint server/**/*.js --fix",
"dev": "npm run build && npm run start:dev",
"prepare": "husky install",
"test:client": "jest"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.0.0"
}
}