-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.38 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
62
63
64
65
66
{
"name": "direct-webapp",
"description": "DIRECT WebApp",
"version": "0.1.0",
"homepage": "https://github.com/direct-framework/direct-webapp",
"license": "MIT",
"main": "index.html",
"scripts": {
"build": "npm-run-all --silent -p styles:expanded styles:minified scripts:expanded scripts:minified vendor --silent",
"styles:expanded": "node node/build/styles.js expanded",
"styles:minified": "node node/build/styles.js minified",
"scripts:expanded": "node node/build/scripts.js expanded",
"scripts:minified": "node node/build/scripts.js minified",
"vendor": "node node/build/vendor.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test-ui": "vitest --ui",
"test-ci": "vitest --run",
"lint": "eslint node --ext .js",
"lint:fix": "eslint node --ext .js --fix"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-virtual": "^3.0.2",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/html": "^8.6.14",
"@storybook/html-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"autoprefixer": "^10.4.16",
"browser-sync": "^3.0.4",
"cssnano": "^6.0.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.12.0",
"fs-extra": "^11.1.1",
"jsdom": "^27.0.1",
"npm-run-all": "^4.1.5",
"npmlog": "^7.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rollup": "^4.4.0",
"sass": "^1.69.5",
"storybook": "^8.6.14",
"stylelint": "^15.11.0",
"stylelint-config-twbs-bootstrap": "^11.0.1",
"svgo": "^3.0.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"aos": "^2.3.4",
"bootstrap": "^5.3.2",
"d3": "^7.9.0",
"imagesloaded": "^5.0.0",
"simplebar": "^6.2.5",
"smooth-scroll": "^16.1.3"
}
}