-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 770 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 770 Bytes
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
{
"name": "flashcardsscript",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "npm run build && wait-on build/prepWordListForAnki.js && node --experimental-specifier-resolution=node -r dotenv/config build/prepWordListForAnki.js",
"dev:watch": "npm run build:watch",
"build:watch": "npm run build -- -w --preserveWatchOutput",
"build": "tsc -incremental -p tsconfig.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash": "4.14.175",
"@types/node": "16.10.2",
"@types/node-fetch": "3.0.3",
"dotenv": "10.0.0",
"ts-node": "10.2.1",
"typescript": "4.4.3",
"wait-on": "6.0.0"
},
"dependencies": {
"lodash": "4.17.21",
"node-fetch": "3.0.0"
}
}