-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.13 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@coderscamp2020/project-javascript-typescript-starwarsquiz",
"version": "1.0.0",
"description": "",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"clean": "rimraf .parcel-cache && rimraf .cache && rimraf coverage && rimraf dist && rimraf node_modules",
"prebuild": "rimraf dist",
"build": "parcel build ./src/index.html --public-url ./",
"lint": "eslint --ignore-path .gitignore --fix .",
"format": "prettier --ignore-path .gitignore --write \"{src,test}/**/*.{js,json,scss,html}\"",
"start:dev": "parcel -p 8765 watch ./src/index.html",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htk4/CodersCamp2020.Project.JavaScript.StarWarsQuiz.git"
},
"keywords": [],
"author": "CodersCamp2020",
"license": "ISC",
"bugs": {
"url": "https://github.com/htk4/CodersCamp2020.Project.JavaScript.StarWarsQuiz/issues"
},
"homepage": "https://github.com/htk4/CodersCamp2020.Project.JavaScript.StarWarsQuiz#readme",
"dependencies": {
"regenerator-runtime": "^0.13.7",
"src": "^1.1.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.11.5",
"@testing-library/dom": "^7.29.0",
"babel-jest": "^26.5.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.4.2",
"msw": "^0.21.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass": "^1.30.0"
},
"resolutions": {
"node-forge": "^0.10.0"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "./src/static",
"staticOutDir": "static"
},
{
"staticPath": "./src/static/favicon.ico",
"staticOutDir": "/"
}
]
}
}