-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"dependencies": {},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@jspsych/config": "^3.2.2",
"husky": "^7.0.1",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"prettier-plugin-import-sort": "^0.0.7"
},
"prettier": {
"printWidth": 100
},
"importSort": {
".ts, .js, .mjs, .cjs": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": "prettier --write"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"name": "",
"version": ""
}