generated from CodersCamp2020/CodersCamp2020.Project.TypeScript.Chess
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.47 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.47 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
{
"name": "coders-chess",
"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": "main.js",
"scripts": {
"dev": "tsc & parcel src/index.html",
"start": "node server.js",
"build": "tsc & parcel build src/index.html",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"coverage": "nyc -r text -e .ts -x \"spec/*.spec.ts\" npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodersCamp2020-JoaoSebastiao-Team/coders-chess.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodersCamp2020-JoaoSebastiao-Team/coders-chess/issues"
},
"homepage": "https://github.com/CodersCamp2020-JoaoSebastiao-Team/coders-chess#readme",
"devDependencies": {
"@types/jasmine": "^3.6.3",
"@types/node": "^14.14.22",
"jasmine": "^3.6.4",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"express": "^4.17.1",
"icons": "^1.0.0"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
}
}