-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "asynchronism-course",
"version": "1.0.0",
"description": "Asynchronism course platzi",
"main": "index.js",
"scripts": {
"callback": "node src/callback/challenge.js",
"promise": "node src/promise/challenge.js",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Herald-Flores/asynchronism-course.git"
},
"keywords": [
"JavaScript",
"ES6",
"callback",
"Promise",
"Async Await"
],
"author": "Herald Flores",
"license": "MIT",
"bugs": {
"url": "https://github.com/Herald-Flores/asynchronism-course/issues"
},
"homepage": "https://github.com/Herald-Flores/asynchronism-course#readme",
"devDependencies": {
"autoprefixer": "10.4.12",
"gh-pages": "^4.0.0",
"postcss": "8.4.18",
"postcss-nested": "6.0.0",
"standard": "17.0.0",
"tailwindcss": "^3.2.1",
"vite": "3.2.0"
},
"dependencies": {
"node-fetch": "3.2.10",
"xmlhttprequest": "1.8.0"
},
"type": "module"
}