-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.65 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
{
"name": "arc-site",
"version": "1.0.0",
"description": "",
"main": "index.tsx",
"author": "",
"license": "ISC",
"scripts": {
"start": "NODE_ENV=development webpack serve --port 3000",
"start:win": "webpack serve --port 3000",
"format": "eslint --fix . && npx prettier --write .",
"test": "npm test",
"test:verbose": "npm test -- --verbose",
"test:coverage": "CI=true npm test -- --env=jsdom --coverage",
"build": "NODE_ENV=production webpack",
"deploy": "npm run build && permaweb-deploy",
"prepare": "husky install",
"check-packages": "node src/workers/check-packages.mjs"
},
"dependencies": {
"@facts-kit/facts-sdk": "^0.0.47",
"@irys/sdk": "^0.1.1",
"@permaweb/stampjs": "0.5.4",
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.4.0",
"@types/react-router-dom": "^5.3.3",
"arcframework": "1.2.47",
"arweave-wallet-connector": "^1.0.2",
"html-react-parser": "^3.0.4",
"permaweb-orderbook": "1.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-redux": "^7.2.9",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.4.2",
"react-share": "5.0.2",
"react-svg": "^15.1.11",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.6",
"warp-contracts": "1.4.26",
"warp-contracts-plugin-deploy": "1.0.8",
"warp-contracts-plugin-signature": "1.0.15-beta.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-typescript": "^7.21.0",
"@svgr/webpack": "^6.5.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"arweave": "1.13.7",
"assert": "^2.0.0",
"babel-loader": "^9.1.2",
"browserify-zlib": "^0.2.0",
"clean-webpack-plugin": "^4.0.0",
"constants-browserify": "^1.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.3",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"husky": "^8.0.0",
"image-webpack-loader": "^8.1.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"permaweb-deploy": "^1.0.0",
"prettier": "^2.8.3",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.6",
"ts-node": "^10.9.1",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
}
}