-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
60
61
62
63
64
{
"name": "fractal-1",
"description": "fractal 1 project files",
"version": "1.0.0",
"browserslist": [
"defaults"
],
"scripts": {
"dev": "concurrently npm:fractal:start vite",
"fractal:start": "fractal start",
"_dev": "ENV=development fractal start & vite & node scripts/svg.watch.js",
"build": "vite build && fractal build",
"preview": "npx http-server pattern_export",
"svg:build": "svgstore src/svg/*.svg | svgo -i - --config svg.config.cjs -o src/static/dist/sprite.svg"
},
"dependencies": {
"wicg-inert": "^3.1.1",
"@supple-kit/supple-css": "^5.2.0",
"lit": "^2.0.2",
"scroll-into-view": "^1.16.0"
},
"config": {
"paths": {
"source": {
"docs": "src/docs/",
"patterns": "src/patterns/",
"svg": "src/svg/",
"static": "/src/static/",
"vitePort": "30128"
},
"dist": {
"root": "/dist/",
"jsPublicPath": "/js/",
"svg": "dist/svg/",
"static": "dist/static/"
},
"export": {
"root": "pattern_export"
}
}
},
"devDependencies": {
"concurrently": "^7.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"stylelint-use-logical-spec": "^4.1.0",
"@frctl/fractal": "^1.5.11",
"@frctl/handlebars": "^1.2.13",
"@supple-kit/stylelint-config-supple": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"lorem-ipsum": "^2.0.4",
"nodemon": "^2.0.14",
"postcss-preset-env": "^7.2.0",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"svgo": "^2.8.0",
"svgstore-cli": "^2.0.1",
"typescript": "^4.4.4",
"vite": "^3.0.4"
}
}