forked from Chalarangelo/30-seconds-of-interviews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.67 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
{
"name": "30-seconds-of-interviews",
"description": "The curated collection of common interview questions to help you prepare for your next interview.",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"builder": "node ./scripts/build.js",
"extractor": "node ./scripts/extract.js",
"dev": "parcel website/index.html",
"build": "parcel build website/index.html -d docs/ --public-url ./",
"lint": "eslint --fix --ext js .",
"formatQuestions": "prettier-eslint --write \"questions/*.md\" --log-level \"info\"",
"format": "prettier-eslint --write \"scripts/*.js\" && prettier-eslint --write \"website/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/fejes713/30-seconds-of-interviews"
},
"author": "Stefan Fejes (ns.fejes.stefan@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fejes713/30-seconds-of-interviews/issues"
},
"homepage": "https://30secondsofinterviews.org/",
"dependencies": {
"babel-preset-stage-3": "^6.24.1",
"chalk": "^2.4.1",
"feather-icons": "^4.7.3",
"focus-visible": "^4.1.4",
"fs-extra": "^6.0.0",
"hyperapp": "^1.2.6",
"markdown-builder": "^0.8.9",
"marked": "^0.3.19",
"modern-normalize": "^0.4.0",
"npm": "^6.0.0",
"prettier-eslint": "^8.8.1",
"prismjs": "^1.14.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.8.2",
"node-sass": "^4.9.0",
"parcel-bundler": "^1.8.1",
"prettier-eslint-cli": "^4.7.1"
}
}