-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.29 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
{
"name": "veiling",
"private": true,
"version": "0.0.1",
"description": "Veiling First Prototype",
"scripts": {
"test": "yarn workspaces foreach --parallel run test",
"coverage": "yarn workspaces foreach --parallel run coverage",
"format": "prettier --write --loglevel warn '**/*.*'",
"lint": "yarn workspaces foreach --parallel run lint",
"refreshVSToken": "vsts-npm-auth -config .npmrc",
"build": "webpack",
"prebuild": "npm run copy:types",
"start": "webpack serve --mode development --env development",
"prestart": "npm run copy:types",
"copy:types": "rsync -avr .dfx/$(echo ${DFX_NETWORK:-'**'})/canisters/** --exclude='assets/' --exclude='idl/' --exclude='*.wasm' --delete src/declarations"
},
"devDependencies": {
"@dfinity/agent": "0.10.0",
"@dfinity/candid": "0.10.0",
"@dfinity/principal": "0.10.0",
"@kryha/eslint-config": "^1.0.1",
"@kryha/eslint-config-react": "^1.0.1",
"@kryha/prettier-config": "^1.0.0",
"@svgr/webpack": "^5.5.0",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"assert": "2.0.0",
"buffer": "6.0.3",
"copy-webpack-plugin": "^9.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"events": "3.3.0",
"html-webpack-plugin": "5.3.1",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"terser-webpack-plugin": "5.1.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"util": "0.12.3",
"webpack": "5.24.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@dfinity/auth-client": "^0.10.1",
"@dfinity/authentication": "^0.10.1",
"@dfinity/identity": "^0.10.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@reduxjs/toolkit": "^1.6.2",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.9",
"@types/react-select": "^5.0.1",
"@types/styled-components": "^5.1.14",
"css-loader": "^6.2.0",
"date-fns": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"formik": "^2.2.9",
"hex-to-rgba": "^2.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-error-boundary": "^3.1.3",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"react-select": "^5.1.0",
"style-loader": "^3.2.1",
"styled-components": "^5.3.1",
"yup": "^0.32.9"
},
"eslintConfig": {
"extends": "@kryha/eslint-config-react"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
],
"repository": {
"type": "git",
"url": "https://[email protected]/Kryha-io/Dfinity/_git/nft-english-auctions"
},
"keywords": [
"NFT",
"English auction",
"Blockchain",
"React",
"Internet Computer",
"Motoko",
"Canister"
],
"author": "kryha",
"license": "ISC"
}