forked from facebookincubator/infima
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.2 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.2 KB
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:deploy": "yarn workspace infima-website deploy",
"lock:update": "npx yarn-deduplicate",
"postinstall": "yarn lock:update",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"stylelint": "^14.6.0",
"stylelint-copyright": "^2.0.0-beta.17",
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
"stylelint-high-performance-animation": "^1.6.0",
"stylelint-order": "^5.0.0"
}
}