summaryrefslogtreecommitdiffstats
path: root/package.json
blob: f7674ceab8b2a57caaeb6ed6108998bd048a4d1c (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
{
    "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 video volume-2 check trash bookmark cog logout tags lock user chevron-left chevron-right hash x send smile 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": "^1.4.9",
        "iro-sass": "git+https://git.vulpes.one/git/iro-sass.git"
    },
    "devDependencies": {
        "iro-icons": "git+https://git.vulpes.one/git/iro-icons.git",
        "postcss-scss": "^4.0.6",
        "pug": "^3.0.0",
        "pug-cli": "^1.0.0-alpha6",
        "sass": "^1.57.1",
        "stylelint": "^14.16.1",
        "stylelint-config-sass-guidelines": "^9.0.1",
        "svg-sprite": "^2.0.2"
    }
}