-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"templates/cli"
],
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"build": "npm run build -ws",
"update-unpkg-links": "gulp updateUnpkgLinks",
"update-readme": "node ./update-readme.js",
"prepare": "husky install",
"changeset": "changeset",
"changeset:version": "changeset version && npm install && npm run update-unpkg-links && npm run update-readme",
"changeset:publish": "npm run build && changeset publish",
"new": "node templates/cli/src/index.js"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@jspsych/config": "^3.0.0",
"@types/jest": "^29.5.12",
"husky": "^7.0.1",
"import-sort-style-module": "^6.0.0",
"jest": "*",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"prettier-plugin-import-sort": "^0.0.7",
"ts-jest": "*",
"tsup": "^8.2.4"
},
"prettier": {
"printWidth": 100
},
"importSort": {
".ts, .js, .mjs, .cjs": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": "prettier --write"
},
"jest": {
"projects": [
"<rootDir>/packages/*/jest.config.cjs"
]
},
"dependencies": {
"chokidar": "^3.6.0",
"gulp": "^5.0.0",
"gulp-replace": "^1.1.4",
"jspsych": "^8.0.2",
"run-func": "^3.0.0"
}
}