-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.91 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
59
60
61
62
63
64
65
66
{
"dependencies": {
"@decoy9697/vector": "^1.0.2",
"@reach/dialog": "^0.17.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.4.5",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"fast-check": "^2.24.0",
"husky": "^7.0.4",
"immer": "^9.0.12",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"postcss-normalize": "^10.0.1",
"prettier": "^2.6.2",
"query-string": "^7.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.70.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-jest": "^27.1.4",
"tslib": "^2.4.0",
"typescript": "^4.6.3",
"use-immer": "^0.7.0"
},
"scripts": {
"clean": "tsc --build --clean && jest --clearCache",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"build": "rollup -c",
"dev": "NODE_ENV=development rollup -c --watch",
"postinstall": "husky install",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "tsc && yarn test --no-colors"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"name": "ai-steering-behaviours",
"version": "1.0.0",
"main": "dist/bundle.js",
"author": "craigdallimore <[email protected]>",
"license": "MIT",
"devDependencies": {}
}