-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
35 lines (35 loc) · 1.23 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
{
"repository": "github:facebookincubator/infima",
"author": "Yangshun Tay",
"license": "MIT",
"workspaces": [
"packages/*",
"website"
],
"private": true,
"scripts": {
"format": "prettier --config .prettierrc --write --ignore-unknown \"**/*\"",
"format:check": "prettier --config .prettierrc --check --ignore-unknown \"**/*\"",
"lint": "stylelint \"**/*.pcss\"",
"lint:fix": "stylelint \"**/*.pcss\" --fix",
"start": "cd packages/core && npm start",
"build": "yarn workspace infima build",
"build:en": "yarn workspace infima build --locale en",
"website:start": "yarn workspace infima-website start",
"website:build": "yarn workspace infima-website build",
"website:serve": "yarn workspace infima-website serve",
"website:deploy": "yarn workspace infima-website deploy",
"website:clear": "yarn workspace infima-website clear",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"stylelint": "^16.3.1",
"stylelint-copyright": "^3.2.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-order": "^6.0.4"
}
}