-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.54 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
{
"name": "@react-noui/sentence",
"version": "0.0.1",
"description": "React sentence creator",
"main": "lib/index.js",
"author": "taystack",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "yarn lint && yarn build:clean; yarn build:types; yarn build:lib",
"build:types": "yarn tsc",
"build:lib": "NODE_ENV=production yarn babel src --out-dir lib --source-maps inline --extensions '.ts,.tsx,.js' --ignore '**/__tests__/**' --ignore '**/stories/**'",
"build:clean": "rimraf lib",
"lint": "yarn eslint src",
"lint:fix": "yarn lint --fix",
"test": "yarn jest",
"test:coverage": "yarn jest --collect-coverage"
},
"devDependencies": {
"@anansi/eslint-plugin": "^0.16.11",
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"react": "^18.2.0"
}
}