This repository has been archived by the owner on May 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "rareaf",
"version": "1.0.0",
"description": "RareAF NFT Marketplace",
"private": true,
"scripts": {
"test": "nyc ./node_modules/.bin/_mocha 'tests/**/*.ts'",
"clean": "rimraf ./dist",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"author": "Ben Guidarelli <ben.guidarelli@gmail.com>",
"license": "MIT",
"dependencies": {
"@blueprintjs/core": "^3.39.0",
"@blueprintjs/select": "^3.15.9",
"@randlabs/myalgo-connect": "^1.1.0",
"@testdeck/mocha": "^0.1.2",
"algorand-session-wallet": "^1.3.1",
"algosdk": "^1.10.0",
"assert": "^2.0.0",
"chai": "^4.3.4",
"crypto-browserify": "^3.12.0",
"jquery": "^3.5.1",
"js-sha256": "^0.9.0",
"mocha": "^9.0.3",
"nft.storage": "^3.0.1",
"nyc": "^15.1.0",
"react-async": "^10.0.1",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3",
"stream-browserify": "^3.0.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.1.0"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.11",
"@webpack-cli/generators": "^2.2.0",
"css-loader": "^6.1.0",
"html-webpack-plugin": "^5.3.2",
"ipfs": "^0.54.2",
"node-sass": "^6.0.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^16.8.6",
"rimraf": "^3.0.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"workbox-webpack-plugin": "^6.1.5"
},
"browserslist": [
"> 2%"
]
}