-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 963 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 963 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
28
29
30
31
{
"name": "wordsofweb3",
"version": "1.4.0",
"description": "Backend for wordsofweb3.eth.",
"main": "build.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./utils/build.js",
"start": "http-server ./build -p 8080",
"clear": "rm -rf ./build/* ./static/* ./utils/page-output.txt ./utils/intertextual-output.txt",
"import": "node ./utils/data/import/import-terms.js",
"spell-check": "node scripts/check-glossary-spelling.js",
"spell-check:fix": "cspell \"locales/**/*.json\" --wordsOnly --unique | sort > cspell-words.txt",
"clean-slate": "bash ./clean-slate.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.3.3",
"csv-parser": "^3.0.0",
"json2csv": "^6.0.0-alpha.2"
},
"devDependencies": {
"cspell": "^8.19.3",
"doctoc": "^2.2.1",
"glob": "^11.0.2",
"http-server": "^14.1.1"
}
}