generated from technote-space/ts-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.02 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
{
"name": "@technote-space/ga-framework",
"version": "0.15.1",
"description": "GA Framework",
"keywords": [
"genetic algorithm"
],
"homepage": "https://github.com/technote-space/ga-framework",
"bugs": {
"url": "https://github.com/technote-space/ga-framework/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/technote-space/ga-framework.git"
},
"license": "MIT",
"author": {
"name": "Technote",
"email": "technote.space@gmail.com",
"url": "https://technote.space"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"webpack.common.js",
"babel.config.js",
"src/assets",
"src/public"
],
"scripts": {
"build": "tsc && npm_config_yes=true npx tsc-alias",
"postinstall": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/husky ] || husky install",
"lint": "eslint './src/**/*.{ts,tsx}' --cache",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'",
"prepublishOnly": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/pinst ] || pinst --disable",
"postpublish": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/pinst ] || pinst --enable",
"test": "yarn lint",
"update": "npm_config_yes=true npx npm-check-updates -u --timeout 100000 && yarn install && yarn upgrade && yarn audit"
},
"dependencies": {
"@egjs/hammerjs": "^2.0.17",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui-treasury/layout": "^5.0.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"@technote-space/genetic-algorithms-js": "^0.8.27",
"@technote-space/worker-controller": "^0.5.56",
"chart.js": "^4.1.1",
"clsx": "^1.2.1",
"keycharm": "^0.4.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"vis-data": "^7.1.4",
"vis-network": "^9.1.2",
"vis-util": "^5.0.3"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-react-inline-elements": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/node": "^18.11.18",
"@types/react-helmet": "^6.1.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-plugin-react-html-attrs": "^3.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.30.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"pinst": "^3.0.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
},
"publishConfig": {
"access": "public"
},
"port": 5000
}