-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.3 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": "marriagegame",
"version": "0.0.1",
"description": "marriage game",
"main": "index.js",
"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": "jest",
"i18n-update": "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",
"run-android": "npm run build && cd android && ./gradlew installDebug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yaktender/marriagegame.git"
},
"keywords": [
"marriage",
"card",
"game",
"android",
"nodejs",
"typescript"
],
"author": "yaktender",
"license": "MIT",
"bugs": {
"url": "https://github.com/yaktender/marriagegame/issues"
},
"devDependencies": {
"@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": "24.0.11",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"autoprefixer-stylus": "1.0.0",
"concurrently": "5.0.0",
"eslint": "7.16.0",
"http-server": "0.12.0",
"jest": "^26.0.0",
"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.54.7",
"ts-jest": "26.4.4",
"typescript": "4.1.2",
"whatwg-fetch": "3.5.0"
},
"dependencies": {
"@badrap/result": "0.2.6",
"@capacitor-community/keep-awake": "1.0.0",
"@capacitor/android": "2.4.6",
"@capacitor/cli": "2.4.6",
"@capacitor/core": "2.4.6",
"@capacitor/ios": "2.4.6",
"@rollup/plugin-alias": "3.1.1",
"@types/d3": "4.5.0",
"@types/lodash-es": "4.17.3",
"capacitor-sound-effect": "git+https://github.com/veloce/capacitor-sound-effect.git",
"capacitor-stockfish": "git+https://github.com/veloce/capacitor-stockfish.git",
"capacitor-stockfish-variants": "git+https://github.com/veloce/capacitor-stockfish.git#variants",
"chessops": "0.8.1",
"cordova-plugin-fullscreen": "1.2.0",
"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.15",
"mithril": "git+https://github.com/veloce/mithril.js.git#next",
"rlite-router": "1.1.3",
"signals": "1.0.0"
},
"homepage": "https://github.com/yaktender/marriagegame#readme"
}