-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@dino-safari/module-01-modern-javascript",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Module 1 - Setting Up Base Camp: ESM, tooling, Vitest, linting, debugging",
"scripts": {
"test": "vitest run --root .",
"demo:hello": "node demo/01-hello-world",
"demo:fundamentals": "node demo/02-syntax-fundamentals",
"demo:strings": "node demo/03-strings",
"demo:esm": "node demo/04-esm-basics",
"demo:scripts": "node demo/05-package-scripts",
"demo:functions": "node demo/06-function-intro",
"demo:vitest": "vitest run demo/07-vitest-intro/alert.test.js",
"demo:debug": "node --inspect demo/08-debugging",
"demo:lint": "eslint demo/09-lint-and-format || true; prettier --check demo/09-lint-and-format || true"
},
"dependencies": {
"picocolors": "^1.1.1"
}
}