-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "js-quiz",
"version": "0.0.1",
"description": "Web app that presents a timed quiz on JavaScript fundamentals to the user.",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/SnapperGee/js-quiz.git"
},
"keywords": [
"quiz",
"js",
"javascript"
],
"author": "Snap",
"license": "ISC",
"bugs": {
"url": "https://github.com/SnapperGee/js-quiz/issues"
},
"homepage": "https://github.com/SnapperGee/js-quiz#readme",
"scripts": {
"build": "npm run ts && npm run scss && npm run html && cp -r ./src/main/resources/img ./build/",
"html": "cp ./src/main/html/index.html ./build/index.html",
"prehtml": "rm -rf ./build/html",
"prescss": "rm -rf ./build/css",
"prets": "rm -rf ./build/js",
"scss": "sass --no-source-map ./src/main/scss:./build/css",
"ts": "tsc -p ./tsconfig.json"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"sass": "^1.66.1",
"typescript": "^5.1.6"
},
"dependencies": {
"bootstrap": "^5.3.1",
"bootstrap-icons": "^1.10.5",
"tslib": "^2.6.2"
}
}