-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 992 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 992 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
32
33
34
35
36
37
{
"private": true,
"name": "javascript-questions",
"description": "JavaScript Questions",
"version": "1.2.0",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --template src/template.html",
"serve": "preact build && preact serve",
"dev": "preact watch --template src/template.html",
"lint": "eslint src",
"update-questions": "node scripts/extract-questions"
},
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"dotenv-safe": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-synacor": "^3.0.5",
"highlight.js": "^11.9.0",
"if-env": "^1.0.0",
"preact-cli": "^3.0.2",
"puppeteer": "^10.2.0",
"turndown": "^6.0.0"
},
"dependencies": {
"preact": "^10.5.14",
"preact-compat": "^3.19.0",
"preact-render-to-string": "^5.1.19",
"snarkdown": "^2.0.0"
}
}