-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·86 lines (86 loc) · 2.58 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
{
"name": "caissa",
"version": "1.0.0",
"description": "Caissa helps to analyze your chess games",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.8.3",
"chess.js": "^0.10.3",
"es-event-emitter": "^1.3.9",
"interactjs": "^1.9.10",
"local-storage": "^2.0.0",
"lodash": "^4.17.19",
"mithril": "^2.0.4",
"regenerator-runtime": "^0.13.3",
"screenfull": "^5.0.2",
"tachyons": "^4.11.1",
"wasm-loader": "^1.3.0",
"web-animations-js": "^2.3.2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-jsx": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"cross-env": "^6.0.3",
"css-loader": "^3.5.2",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-mithril": "^0.1.1",
"fibers": "5.0.1",
"file-loader": "^5.1.0",
"fs": "0.0.1-security",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"raw-loader": "^4.0.1",
"readline": "^1.3.0",
"sass": "^1.45.0",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.2",
"url-loader": "^3.0.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11",
"worker-loader": "^2.0.0",
"write-file-webpack-plugin": "^4.5.1"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --progress --config webpack.config.js",
"build:analyze": "npm run build -- --env.addon=bundleanalyze --env.addon=bundlevisualizer",
"lint:js": "eslint src/ webpack.*.js --cache --fix",
"distribute": "./dist-pages.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentx-cgn/caissa.git"
},
"author": "agentx",
"license": "MIT",
"bugs": {
"url": "https://github.com/agentx-cgn/caissa/issues"
},
"homepage": "https://caissa.js.org",
"keywords": [
"chess",
"uci",
"fen",
"pgn",
"stockfish"
]
}