-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.51 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "v1",
"version": "1.0.0",
"description": "Vanilla JS portfolio for Stephan Lamoureux",
"source": "index.html",
"scripts": {
"dev": "parcel",
"build": "parcel build index.html blog.html contact.html projects.html 404.html",
"test": "jest --verbose ./tests --passWithNoTests",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephanlamoureux/v1.git"
},
"keywords": [
"portfolio",
"vanilla.js",
"developer"
],
"author": "Stephan Lamoureux",
"license": "ISC",
"bugs": {
"url": "https://github.com/stephanlamoureux/v1/issues"
},
"homepage": "https://github.com/stephanlamoureux/v1#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-jest": "^29.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^24.0.0",
"parcel": "^2.6.2",
"prettier": "2.7.1",
"punycode": "^2.1.1"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"@emailjs/browser": "^3.6.2",
"ga-gtag": "^1.1.1",
"hamburgers": "^1.2.1",
"tippy.js": "^6.3.7",
"toastify-js": "^1.12.0",
"tui-pagination": "^3.4.1",
"typed.js": "^2.0.12"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"jest-fetch-mock/setupJest"
],
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
}
}