-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "random-verb",
"version": "0.2.1",
"description": "Random verb with past and past participe. ",
"scripts": {
"test": "jest",
"dev": "parcel serve ./src/index.html --open",
"prebuild": "rm -rf dist",
"build": "parcel build src/index.html --public-url ./",
"api": "nodemon api/api.js",
"start": "npm run migrate && npm run api & npm run build && open dist/index.html",
"watch": "npm run migrate && npm run api & npm run dev",
"lint": "eslint .",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiguelYax/random-verb.git"
},
"keywords": [
"Learning",
"English",
"Javascript",
"React",
"Parcel",
"Node"
],
"author": "Miguel Yax <mig_dj@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MiguelYax/random-verb/issues"
},
"homepage": "https://github.com/MiguelYax/random-verb#readme",
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.16.7",
"@parcel/transformer-sass": "^2.12.0",
"@testing-library/react": "^15.0.7",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.3",
"jest": "^29.7.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"sass": "^1.49.9"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.1",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.3.1"
},
"volta": {
"node": "20.13.1"
}
}