-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@coderscamp2020/project-javascript-typescript-starwarsquiz",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf .cache && rimraf coverage && rimraf dist && rimraf node_modules",
"prebuild": "rimraf dist",
"preinstall": "npx npm-force-resolutions",
"build": "parcel build index.html --public-url ./",
"format": "prettier --write \"src/**/*.js\" \"src/**/*.ts\" \"test/**/*.js\" \"test/**/*.ts\"",
"start:dev": "parcel -p 8765 watch index.html",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodersCamp2020/CodersCamp2020.Project.JavaScript.StarWarsQuiz.git"
},
"keywords": [],
"author": "CodersCamp2020",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodersCamp2020/CodersCamp2020.Project.JavaScript.StarWarsQuiz/issues"
},
"homepage": "https://github.com/CodersCamp2020/CodersCamp2020.Project.JavaScript.StarWarsQuiz#readme",
"dependencies": {
"regenerator-runtime": "^0.13.7",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@testing-library/dom": "^7.26.6",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/user-event": "^12.2.2",
"babel-jest": "^26.5.0",
"cssnano": "^4.1.10",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"msw": "^0.21.3",
"parcel-bundler": "^1.3.1",
"parcel-plugin-static-files-copy": "^2.5.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": "(spec|test)[.]js",
"coverageDirectory": "../coverage",
"setupFiles": [
"./test/setupJest.js"
],
"collectCoverageFrom": [
"./src/**"
]
},
"staticFiles": {
"staticPath": [
{
"staticPath": "static",
"staticOutDir": "static"
}
]
},
"resolutions": {
"node-forge": "0.10.0"
}
}