-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
48 lines (48 loc) · 1.83 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
{
"name": "siimple-repo",
"version": "4.3.1",
"private": true,
"description": "A minimal and themeable CSS toolkit for flat and clean designs.",
"author": "Josemi Juanes <[email protected]>",
"type": "module",
"license": "MIT",
"homepage": "https://www.siimple.xyz/",
"repository": "https://github.com/jmjuanes/siimple",
"bugs": "https://github.com/jmjuanes/siimple/issues",
"workspaces": [
"packages/*",
"playground",
"website"
],
"scripts": {
"build": "yarn run build:css && yarn run build:icons",
"build:css": "gulp css",
"build:icons": "gulp icons:sprite",
"build:docs": "cross-env DOCS_ONLY=true yarn workspace siimple-website build",
"build:playground": "cross-env PLAYGROUND_ONLY=true yarn workspace siimple-playground build",
"build:website": "yarn workspace siimple-website build && yarn workspace siimple-playground build && yarn copy-assets",
"copy-assets": "node copy-assets.cjs",
"serve": "yarn start:website",
"start:website": "stattic --folder ./public --port 5000",
"start:docs": "cross-env DOCS_ONLY=true yarn workspace siimple-website serve",
"start:playground": "stattic --folder ./playground/public --port 5000",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"autoprefixer": "^10.3.5",
"babel-jest": "^29.0.1",
"clean-css": "^5.2.4",
"cross-env": "^7.0.3",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"postcss": "^8.4.14",
"stattic": "^0.4.0"
}
}