forked from assembler-institute/apis-intro-methods-pill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 856 Bytes
/
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
{
"name": "apis-intro-methods-pill",
"version": "1.0.0",
"description": "apis-intro-methods-pill",
"author": "Dani Lucaci <dani@assemblerschool.com>",
"keywords": [
"apis",
"basics",
"assemblerschool"
],
"scripts": {
"test": "jest --watchAll",
"start": "parcel index.html --open",
"build": "parcel build index.html",
"deploy": "codesandbox ./"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
},
"dependencies": {
"axios": "^0.19.2",
"jquery": "3.4.1"
},
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/preset-env": "^7.9.5",
"@types/bootstrap": "^4.3.2",
"@types/jest": "^25.2.1",
"@types/jquery": "^3.3.38",
"babel-jest": "^25.4.0",
"jest": "^25.4.0",
"jest-fetch-mock": "^3.0.3",
"parcel-bundler": "^1.12.4"
}
}