-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.42 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
{
"author": "Jon Cursi <[email protected]>",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/joncursi/ethereum/issues"
},
"contributors": [
"Jon Cursi <[email protected]>"
],
"dependencies": {
"@zeit/next-css": "1.0.1",
"express": "4.17.0",
"htmlescape": "1.1.1",
"next": "8.1.1-canary.37",
"next-routes": "1.4.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"styled-jsx": "3.2.1",
"web3": "1.0.0-beta.55"
},
"description": "🖥️ Playing with Ethereum.",
"devDependencies": {
"@commitlint/cli": "7.6.1",
"@commitlint/config-conventional": "7.6.0",
"@types/express": "4.16.1",
"@types/htmlescape": "1.1.1",
"@types/node": "12.0.2",
"@types/react": "16.8.18",
"@types/react-dom": "16.8.4",
"@types/styled-jsx": "2.2.8",
"@types/zeit__next-typescript": "0.1.2",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"babel-plugin-root-import": "6.2.0",
"cross-env": "5.2.0",
"dotenv-cli": "2.0.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.3.0",
"eslint-import-resolver-babel-plugin-root-import": "1.1.1",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-disable": "1.0.4",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-immutable": "1.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-lodash": "5.1.0",
"eslint-plugin-new-with-error": "2.0.0",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "1.6.0",
"eslint-plugin-security": "1.4.0",
"husky": "2.3.0",
"lint-staged": "8.1.7",
"markdownlint-cli": "0.16.0",
"nodemon": "1.19.0",
"npm-run-all": "4.1.5",
"prettier": "1.17.1",
"rimraf": "2.6.3",
"ts-node": "8.1.0",
"typescript": "3.4.5",
"webpack-bundle-analyzer": "3.3.2",
"webpackbar": "3.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"homepage": "https://github.com/joncursi/ethereum#readme",
"keywords": [
"eth",
"ethereum"
],
"license": "UNLICENSED",
"lint-staged": {
"*.{js}": "npm run test:lint:js",
"*.{js,json,md,ts,tsx}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": "npm run test:lint:ts",
"*.md": "npm run test:lint:md"
},
"name": "ethereum",
"repository": {
"type": "git",
"url": "git+https://github.com/joncursi/ethereum.git"
},
"scripts": {
"analyze": "cross-env ANALYZE=1 next build app",
"build": "NODE_OPTIONS=--max_old_space_size=8192 next build app && tsc --project app/tsconfig.json && tsc --project server/tsconfig.json",
"dev": "unset NODE_ENV && dotenv -e .env -- nodemon",
"geth": "geth --syncmode \"light\" --rpc --rpcapi=\"eth,web3,personal\"",
"start": "unset NODE_ENV && dotenv -e .env node app/.next/server",
"test": "npm-run-all test:**",
"test:lint:js": "eslint . --ext .js --quiet",
"test:lint:md": "markdownlint README.md --config markdownlint.config.json",
"test:lint:ts": "eslint . --ext .ts,.tsx --quiet",
"test:types": "tsc --project app/tsconfig.json && tsc --noEmit --project server/tsconfig.json"
},
"version": "0.0.1"
}