-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "@hedgehog/core",
"version": "0.7.0",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"esbuild": "webpack ./webpack.config.js",
"watch": "tsc -p tsconfig.json --watch --preserveWatchOutput",
"prettier": "prettier --single-quote --write '**/*.{js,json,md}'",
"lint": "eslint src --fix --ext .ts,.tsx,.js,.jsx"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.10.4",
"@babel/standalone": "^7.10.5",
"@tensorflow/tfjs": "^2.7.0",
"babel-template": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"d3": "^6.7.0",
"esbuild-loader": "^2.9.1",
"gpu.js": "^2.9.5",
"mathjs": "^7.1.0",
"nerdamer": "^1.1.5",
"react": "^17.0.2",
"sync-fetch": "^0.3.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"@babel/types": "^7.10.5",
"@types/d3": "^6.7.0",
"@types/mathjs": "^6.0.5",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"ts-node": "^10.0.0"
}
}