This repository has been archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
98 lines (98 loc) · 3.6 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "design-web-toolkit",
"version": "1.0.0-beta",
"description": "Implementazione di riferimento per le linee guida di design della PA",
"main": "index.js",
"dependencies": {
"fr-accordion": "^1.0.5",
"fr-bypasslinks": "^1.0.5",
"fr-dialogmodal": "^1.0.2",
"fr-offcanvas": "^1.0.4",
"headroom.js": "^0.9.3",
"jquery.cookie": "^1.4.1",
"owl.carousel": "^2.1.4",
"pikaday": "https://registry.npmjs.org/pikaday/-/pikaday-1.5.1.tgz",
"popper.js": "^1.11.0",
"promise-polyfill": "^6.0.2",
"salvattore": "^1.0.9",
"suitcss": "^2.0.0",
"suitcss-base": "^2.0.0",
"suitcss-components": "^1.0.1",
"suitcss-components-form": "^1.0.0",
"suitcss-utils": "^2.0.0",
"tablesaw": "^3.0.0",
"throttle-debounce": "^1.0.1"
},
"devDependencies": {
"@frctl/fractal": "^1.1.7",
"@frctl/mandelbrot": "^1.2.0",
"@frctl/nunjucks": "^1.0.3",
"ava": "^0.24.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.2",
"eslint": "^3.4.0",
"eslint-loader": "^1.3.0",
"extract-text-webpack-plugin": "^2.1.0",
"faker": "^4.1.0",
"file-loader": "^0.10.1",
"gh-pages": "^1.1.0",
"lodash": "^4.16.4",
"npm-run-all": "^4.0.2",
"postcss-assets": "^4.1.0",
"postcss-color-function": "^3.0.0",
"postcss-copy-assets": "^0.3.0",
"postcss-devtools": "^1.1.0",
"postcss-each": "^0.9.3",
"postcss-easy-import": "^2.0.0",
"postcss-extend": "^1.0.1",
"postcss-flexbugs-fixes": "^2.0.0",
"postcss-import": "^9.1.0",
"postcss-inline-svg": "^2.0.1",
"postcss-nesting": "^2.3.1",
"postcss-pseudoelements": "^3.0.0",
"postcss-url": "^6.1.0",
"read-cache": "^1.0.0",
"shx": "^0.2.2",
"style-loader": "^0.13.1",
"stylelint": "^7.9.0",
"stylelint-config-suitcss": "^9.0.0",
"stylelint-selector-bem-pattern": "^1.0.0",
"suitcss-preprocessor": "^4.0.0",
"url-loader": "^0.5.7",
"webpack": "^3.4.1"
},
"scripts": {
"build:resources": "shx mkdir -p build/src && shx cp -r src/vendor build/ && shx cp -r src/icons build/src/icons && shx cp src/_preview.tmpl build/index.html",
"build:styleguidecss": "suitcss -m -c .postcss.js assets/index-styleguide.css build/build-styleguide.css",
"build:css": "suitcss -m -c .postcss.js index.css build/build.css",
"watch:css": "suitcss -w -c .postcss.js index.css build/build.css",
"build:js": "cross-env WEBPACK_ENV=build webpack",
"watch:js": "cross-env WEBPACK_ENV=dev webpack --display-modules --progress --colors --watch",
"build:styleguide": "fractal build",
"watch:styleguide": "fractal start --watch --sync --port 1310",
"watch": "npm-run-all --parallel build:resources build:styleguidecss watch:css watch:js watch:styleguide",
"build": "npm-run-all build:resources build:css build:styleguidecss build:js build:styleguide",
"start": "npm run build && npm run watch",
"deploy": "npm run build && gh-pages -d styleguide"
},
"author": "AgID",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/italia/design-web-toolkit.git"
},
"optionalDependencies": {
"async": "^2.1.4",
"cheerio": "^0.22.0",
"node-fetch": "^1.6.3",
"spid-graphics": "git+https://github.com/italia/spid-graphics.git"
}
}