forked from adrianmcli/eth95
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
{
"name": "eth95",
"version": "0.1.2",
"bin": {
"eth95": "./dist/index.js"
},
"files": [
"/dist"
],
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"build": "rm -rf dist && yarn tsc && yarn bundle",
"tsc": "tsc -p . && tsc -p ./src/app",
"bundle": "parcel build src/app/index.html -d dist/app --no-source-maps",
"test": "jest",
"test:ci": "jest --runInBand",
"prepublish": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "yarn tsc",
"pre-push": "yarn test"
}
},
"dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"clear": "^0.1.0",
"commander": "^5.1.0",
"express": "^4.17.1",
"figlet": "^1.4.0",
"parcel-bundler": "^1.12.4",
"query-string": "^6.12.1",
"ws": "^7.3.0"
},
"devDependencies": {
"@studydefi/money-legos": "^2.1.3",
"@testing-library/react": "^10.0.4",
"@testing-library/react-hooks": "^3.2.1",
"@types/clear": "^0.1.0",
"@types/express": "^4.17.6",
"@types/figlet": "^1.2.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.1",
"@types/parcel-bundler": "^1.12.1",
"@types/puppeteer": "^3.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-modal": "^3.10.5",
"@types/styled-components": "^5.1.0",
"@types/ws": "^7.2.4",
"abi-decoder": "^2.3.0",
"ethers": "^4.0.47",
"ganache-cli": "^6.9.1",
"get-port": "^5.1.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-puppeteer": "^4.4.0",
"nodemon": "^2.0.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"puppeteer": "^3.1.0",
"random-words": "^1.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-modal": "^3.11.2",
"react-test-renderer": "^16.13.1",
"react-use": "^15.1.0",
"react95": "^3.0.0-beta.24",
"styled-components": "^5.1.0",
"tcp-port-used": "^1.0.1",
"truffle": "^5.1.27",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.2",
"unstated-next": "^1.1.0"
}
}