generated from CodersCamp2020/CodersCamp2020.Project.TypeScript.Chess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.37 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
{
"name": "coderscamp2020.project.typescript.pokemonfight",
"version": "1.0.0",
"description": "**UWAGA! Zaczynając pracę nad projektem — nie róbcie forka.\r Jedna osoba z zespołu (np. Mentor) powinna użyć przycisku `Use this template` i dodać innych członków zespołu jako Collaborators do tego repozytorium.\r Mentorzy mogą dowolnie zmieniać zakres projektu lub zdecydować się na zupełnie inny temat.**",
"main": "index.ts",
"scripts": {
"build": "parcel build index.html --public-url ./",
"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/lukaszdutka/CodersCamp2020.Project.TypeScript.pokemonfight.git"
},
"staticFiles": {
"staticPath": "assets",
"watcherGlob": "**"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukaszdutka/CodersCamp2020.Project.TypeScript.pokemonfight/issues"
},
"homepage": "https://github.com/lukaszdutka/CodersCamp2020.Project.TypeScript.pokemonfight#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3"
},
"dependencies": {}
}