-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 803 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 803 Bytes
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
{
"name": "nodejs-intro-workshop",
"version": "1.0.0",
"description": "Assembler School: Node.js Intro Workshop",
"keywords": [
"nodejs"
],
"author": "Dani Lucaci <dani@assemblerschool.com>",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test:ex:01": "jest 01-exercise --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/assembler-school/nodejs-intro-workshop.git"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.15.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "2.2.1"
}
}