-
-
Notifications
You must be signed in to change notification settings - Fork 317
/
package.json
114 lines (114 loc) · 4.34 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
{
"name": "lichobile",
"version": "8.0.0",
"description": "lichess.org mobile application",
"repository": {
"type": "git",
"url": "https://github.com/lichess-org/lichobile.git"
},
"keywords": [
"lichess",
"chess",
"application",
"mobile",
"realtime",
"android",
"ios"
],
"author": "Vincent Velociter (https://github.com/veloce)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/lichess-org/lichobile/issues"
},
"homepage": "https://github.com/lichess-org/lichobile",
"engines": {
"node": "^16.13",
"npm": "^8.1"
},
"browserslist": "and_chr >= 69, ios_saf >= 12",
"devDependencies": {
"@capacitor/cli": "^4.0.0",
"@rollup/plugin-alias": "3.1.1",
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-json": "4.0.3",
"@rollup/plugin-node-resolve": "8.0.0",
"@rollup/plugin-strip": "1.3.3",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"autoprefixer-stylus": "1.0.0",
"concurrently": "5.0.0",
"eslint": "7.31.0",
"http-server": "0.12.0",
"jest": "27.0.6",
"jetifier": "1.6.5",
"mustache": "3.1.0",
"rimraf": "3.0.2",
"rollup": "2.10.9",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "4.0.4",
"stylus": "0.55.0",
"ts-jest": "27.0.3",
"typescript": "4.1.2",
"whatwg-fetch": "3.5.0"
},
"dependencies": {
"@badrap/result": "0.2.6",
"@capacitor-community/keep-awake": "3.0.0",
"@capacitor/android": "^4.0.0",
"@capacitor/app": "^4.0.0",
"@capacitor/browser": "^4.0.0",
"@capacitor/clipboard": "^4.0.0",
"@capacitor/core": "^4.0.0",
"@capacitor/device": "^4.0.0",
"@capacitor/dialog": "^4.0.0",
"@capacitor/filesystem": "^4.0.0",
"@capacitor/haptics": "^4.0.0",
"@capacitor/ios": "^4.0.0",
"@capacitor/keyboard": "^4.0.0",
"@capacitor/network": "^4.0.0",
"@capacitor/preferences": "4.0.2",
"@capacitor/push-notifications": "^4.0.0",
"@capacitor/share": "^4.0.0",
"@capacitor/splash-screen": "^4.0.0",
"@capacitor/status-bar": "^4.0.0",
"@capacitor/toast": "^4.0.0",
"@types/d3": "4.5.0",
"@types/lodash-es": "4.17.3",
"capacitor-sound-effect": "3.0.0",
"capacitor-stockfish": "4.0.0",
"capacitor-stockfish-variants": "2.0.0",
"chessops": "0.10.3",
"d3-axis": "1.0.8",
"d3-scale": "1.0.6",
"d3-selection": "1.1.0",
"d3-shape": "1.2.0",
"d3-time": "1.0.7",
"d3-time-format": "2.0.5",
"date-fns": "2.14.0",
"lodash-es": "4.17.21",
"mithril": "github:veloce/mithril.js#next",
"rlite-router": "1.1.3",
"signals": "1.0.0"
},
"scripts": {
"start": "concurrently 'npm run watch' 'npm run serve'",
"serve": "http-server -p 8080 -s -g -c-1 .",
"version": "node scripts/bump-version.js",
"lint": "eslint src/",
"test": "NODE_OPTIONS=--unhandled-rejections=warn jest",
"i18n-update": "rimraf scripts/tmp/ && rimraf www/i18n/*.js && cd scripts && npm run i18n-update",
"compile-date-locales": "node scripts/compile-date-locales",
"styles": "stylus -q -u autoprefixer-stylus src/styl/index.styl -c -o www/css/compiled/app.css",
"styles-watch": "stylus -w -q -u autoprefixer-stylus src/styl/index.styl -o www/css/compiled/app.css",
"compile": "tsc --outDir build/",
"compile-watch": "tsc -w --outDir build/",
"clean": "rimraf build/ && rimraf www/*.js && rimraf www/*.js.map",
"prewatch": "npm run compile",
"watch": "node scripts/inject-conf && concurrently 'npm:compile-watch' 'rollup -w -c' 'npm:styles-watch'",
"prebuild": "npm run clean && npm run compile",
"build": "node scripts/inject-conf && concurrently 'npm:compile-date-locales' 'npm:styles' 'rollup -c' && npx cap copy",
"fetch-nnue": "cd node_modules/capacitor-stockfish/stockfish/src && make net && cp *.nnue ../../../../ios/App/Pods",
"patch-nonfree": "node ./scripts/patch-nonfree"
}
}