-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
{
"name": "root",
"private": true,
"scripts": {
"start": "lerna run start",
"build": "lerna run build",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"lint": "concurrently 'npm:lint-ts' 'npm:lint-css'",
"lint-ts": "npx eslint --no-eslintrc -c .eslintrc packages/*/src/**/*.ts",
"lint-css": "npx stylelint --config .stylelintrc packages/*/src/**/*.css",
"fix": "npx prettier --write packages/**/*.{ts,css,json,md}",
"ci": "npm run fix && npm run lint && npm run refresh && npm run build"
},
"devDependencies": {
"@figma/plugin-typings": "^1.19.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"concurrently": "^5.3.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.8",
"lerna": "^5.6.2",
"lint-staged": "^10.5.4",
"prettier": "1.19.1",
"style-loader": "^1.3.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^19.0.0",
"ts-loader": "^6.2.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.9",
"url-loader": "^3.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "tsc -p ./tsconfig.json --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{ts,css,json,md}": [
"prettier --write"
],
"*.{ts}": [
"eslint --no-eslintrc -c .eslintrc --fix"
],
"*.css": [
"stylelint --config .stylelintrc --fix"
]
},
"dependencies": {
"@jaames/iro": "^5.5.0"
}
}