summaryrefslogtreecommitdiffstats
path: root/package.json
blob: a0d782a704bd47634e649ba443b23efa665245b9 (plain) (blame)
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
{
    "name": "iro-design",
    "version": "1.0.0",
    "description": "Standard implementation of the Iro design system",
    "main": "src/index.scss",
    "author": "Volpeon",
    "license": "MIT",
    "private": true,
    "sideEffects": false,
    "scripts": {
        "build": "npm run build:app && npm run build:style && npm run build:icons && npm run build:assets",
        "build:assets": "cp -r static/* public/",
        "build:app": "pug tpl/index.pug -p tpl --out public/",
        "build:icons": "node node_modules/iro-icons/scripts/create_sprite.js image video volume-2 arrow-right check trash bookmark cog logout tags lock user chevron-left chevron-right hash x send smile repeat heart star arrow-corner-down-left public/icons.svg",
        "build:style": "sass --load-path=node_modules src_demo/index.scss public/style.css",
        "lint:style": "stylelint \"src/**/*.scss\"",
        "fix:style": "stylelint \"src/**/*.scss\" --fix",
        "serve": "python -m http.server --bind 127.0.0.1 --directory public 8001"
    },
    "dependencies": {
        "@oddbird/blend": "^0.2.4",
        "include-media": "^2.0.0",
        "iro-sass": "git+https://git.vulpes.one/git/iro-sass.git#04f8e9dbdc57a53f004e6238dfacc917bafdbbff"
    },
    "devDependencies": {
        "iro-icons": "git+https://git.vulpes.one/git/iro-icons.git#b854aa0bfdc5a1bd233606af8ffff6312017845e",
        "postcss-scss": "^4.0.6",
        "pug": "^3.0.3",
        "pug-cli": "^1.0.0-alpha6",
        "sass": "^1.77.6",
        "stylelint": "^16.6.1",
        "stylelint-config-sass-guidelines": "^11.1.0",
        "stylelint-order": "^6.0.4",
        "svg-sprite": "^2.0.4"
    }
}