-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "@one-for-all/artery-simulator",
"version": "0.2.2",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*.d.ts"
],
"scripts": {
"build": "tsc",
"bundle": "rm -rf dist && rollup -c rollup.config.js",
"lint": "eslint src/**/*.ts --fix",
"prepack": "yarn run build",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"updateSnapshot": "jest --updateSnapshot"
},
"dependencies": {
"@one-for-all/artery": "0.15.0",
"@one-for-all/artery-renderer": "0.20.2",
"@one-for-all/artery-utils": "0.13.0",
"@one-for-all/elements-radar": "0.1.2",
"@one-for-all/headless-ui": "^0.1.4",
"@one-for-all/icon": "^0.6.2",
"@one-for-all/utils": "^0.3.0",
"classnames": "^2.3.1",
"immutable": "^4.0.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"recoil": "^0.7.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^4.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@tsconfig/recommended": "^1.0.1",
"@types/lodash": "^4.14.182",
"@types/node": "^15.12.2",
"@types/react": "~17.0.38",
"@types/react-dom": "^17.0.11",
"@types/testing-library__jest-dom": "~5.14.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"esbuild": "0.14.38",
"eslint": "^8.14.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "27.4.7",
"rollup": "2.68.0",
"rollup-plugin-esbuild-ts": "^4.8.2",
"rollup-plugin-styles": "^3.14.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.44.0",
"ts-jest": "^27.0.7",
"tsconfig-paths-jest": "^0.0.1",
"tslib": "2.3.1",
"typescript": "4.5.5"
}
}