-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
119 lines (119 loc) · 3.51 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
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@starkware-industries/starkex-js",
"version": "0.1.0",
"description": "`starkex-js` is a JavaScript wrapper around the [StarkEx API](https://starkware.co/starkex/api/) that can be used in both NodeJS and Browser environments.",
"keywords": [
"starkware",
"starkex",
"javascript",
"typescript",
"node",
"browser",
"sdk",
"api",
"blockchain",
"etherium"
],
"homepage": "https://github.com/starkware-libs/starkex-js#readme",
"bugs": {
"url": "https://github.com/starkware-libs/starkex-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starkware-libs/starkex-js.git"
},
"license": "ISC",
"author": "Dan Ziv",
"main": "browser.js",
"module": "node.js",
"types": "types/index.d.ts",
"directories": {
"doc": "docs"
},
"files": [
"node.js",
"browser.js",
"types",
"package.json",
"lib",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack --mode=production",
"precommit": "lint-staged",
"start": "webpack --watch --mode development --env development",
"typecheck": "tsc --noemit",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"lint": "yarn run eslint && yarn run typecheck && yarn run format:check",
"format:check": "prettier --check \"**/*.+(ts|js|json|md|html|yml)\"",
"format": "prettier --write \"**/*.+(ts|js|json|md|html|yml)\"",
"docs:generate": "typedoc",
"docs:watch": "typedoc --watch",
"release": "semantic-release",
"release:dry": "semantic-release --no-ci --dry-run",
"npm-publish": "bash ./scripts/npm-publish.bash",
"test": "mocha --recursive",
"playground:js": "node playground/server.js",
"playground:ts": "ts-node -O '{\"module\": \"commonjs\"}' -T playground/server.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|js|jsx)": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.+(json|scss|css|md)": [
"prettier --write"
]
},
"dependencies": {
"axios": "^0.21.1",
"https": "^1.0.0",
"js-logger": "^1.6.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/axios": "^0.14.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"mocha": "^9.2.0",
"prettier": "^2.3.2",
"semantic-release": "^19.0.2",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.5",
"ts-node": "^10.9.1",
"typedoc": "^0.22.6",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.3.5",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}