-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "codeque",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@release-it/conventional-changelog": "^5.0.0",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"typescript": "^4.5.2"
},
"scripts": {
"lint": "yarn workspaces run lint",
"typecheck": "yarn workspaces run typecheck",
"test": "yarn workspaces run test",
"checks": "yarn typecheck && yarn lint && yarn test",
"postinstall": "node fix-framer-motion.js",
"syncReadmes": "node ./syncReadmes.js"
},
"dependencies": {
"@codeque/eslint-plugin": "^0.1.1"
}
}