This repository has been archived by the owner on Feb 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.83 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
{
"name": "predictive-text-studio",
"version": "2021.4.16",
"description": "Create predictive text for YOUR language",
"main": "index.js",
"repository": "[email protected]:eddieantonio/predictive-text-studio.git",
"author": "Eddie Antonio Santos <[email protected]>",
"contributors": [
"Christian Lo",
"Zachary Probst",
"Alice Kim",
"Ian Sung Wok",
"Pranav Narang",
"Xuechun Qiu",
"Jie Ma"
],
"license": "MIT",
"private": true,
"scripts": {
"build": "rollup -c",
"cy": "cypress open",
"dev": "rollup -c -w",
"lint": "eslint '{src,test,cypress}/**/*.ts'",
"lint:fix": "eslint --fix '{src,test,cypress}/**/*.ts'",
"prettier": "prettier --write '{src,test,cypress}/**/*.{ts,svelte}'",
"start": "sirv public -s",
"test": "ava",
"test:ci": "ava --match='!*Google*'",
"validate": "svelte-check"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^5.0.2",
"@tsconfig/svelte": "^1.0.10",
"@types/bcp-47": "^1.0.0",
"@types/node": "^14.11.8",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"ava": "^3.12.1",
"core-js-bundle": "^3.6.4",
"cypress": "~7.0.0",
"cypress-file-upload": "^4.1.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"fake-indexeddb": "^3.1.2",
"husky": "^4.3.0",
"nock": "^13.0.4",
"node-fetch": "^2.6.1",
"prettier": "^2.1.1",
"prettier-plugin-svelte": "^1.4.0",
"regenerator-runtime": "^0.13.5",
"rollup": "^2.26.5",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.0",
"sirv-cli": "^1.0.6",
"svelte": "^3.31.0",
"svelte-check": "^1.0.23",
"svelte-preprocess": "^4.1.1",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9"
},
"dependencies": {
"@predictive-text-studio/lexical-model-compiler": "^14.0.0-alpha.0",
"bcp-47": "^1.0.7",
"chalk": "^4.1.0",
"comlink": "^4.3.0",
"dexie": "^3.0.2",
"dotenv": "^8.2.0",
"exceljs": "~3.5.0",
"googleapis": "^61.0.0",
"jszip": "^3.6.0",
"simple-svelte-autocomplete": "^1.2.4",
"svelte-i18n": "^3.3.7",
"svelte-routing": "^1.4.2",
"tslib": "^2.0.1"
},
"ava": {
"files": [
"test/**/test-*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"environmentVariables": {
"FORCE_COLOR": "1"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint:fix && yarn run prettier"
}
}
}