-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.19 KB
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
{
"name": "visual-bb",
"description": "Bitboard visualization tool",
"version": "1.0.1",
"keywords": [
"bitboard",
"chess",
"bit"
],
"homepage": "https://nnajm.github.io/visual-bb",
"license": "GPL v3.0",
"repository": {
"type": "git",
"url": "https://github.com/nnajm/visual-bb"
},
"scripts": {
"less": "node ./node_modules/less/bin/lessc ./styles/app.less ./public/css/app.css",
"build": "webpack --bail",
"build-p": "npm run less && webpack --progress --profile --bail",
"server": "npm run less && webpack serve --inline --progress --port 8080",
"start": "npm run server"
},
"dependencies": {
"tslib": "2.0.3"
},
"devDependencies": {
"@types/node": "12.6.8",
"clean-webpack-plugin": "3.0.0",
"fork-ts-checker-webpack-plugin": "6.0.8",
"ts-loader": "8.0.12",
"tsconfig-paths-webpack-plugin": "3.3.0",
"copy-webpack-plugin": "7.0.0",
"less": "4.0.0",
"typescript": "4.1.3",
"webpack": "5.11.1",
"webpack-cli": "4.3.0",
"webpack-dev-server": "3.11.1",
"eslint": "7.16.0"
}
}