forked from codeforgermany/click_that_hood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 798 Bytes
/
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
{
"name": "click_that_hood",
"version": "1.0.1",
"description": "A game where users must identify a city's neighborhoods as quickly as possible",
"private": true,
"license": "MIT",
"dependencies": {
"config": "^3.3.6",
"glob": "^8.0.3"
},
"devDependencies": {
"less": "^4.1.2",
"prettier": "2.7.1"
},
"scripts": {
"build": "node build.js && lessc public/css/styles.less public/css/styles.css",
"check": "prettier --check {*.js,public/{*.html,js,css,data/*.json}}",
"check-data": "NODE_OPTIONS=--max_old_space_size=8192 prettier --check public/data",
"format": "prettier --write {*.js,public/{*.html,js,css,data/*.json}}",
"format-data": "NODE_OPTIONS=--max_old_space_size=8192 prettier --write public/data",
"test": "npm run check"
}
}