-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "digital-services-hub",
"version": "1.0.0",
"description": "A collection of digital tools and utilities",
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint js/",
"lint:fix": "eslint js/ --fix",
"build": "npm run build:bundle && npm run build:pages",
"build:bundle": "rollup -c",
"build:pages": "node js/build/generate-pages.js",
"validate": "node js/build/validate.js",
"dev": "rollup -c -w",
"start": "serve ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rollup": "^4.9.1",
"serve": "^14.2.1"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "node",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/js/$1"
}
}
}