This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
forked from getnacelle/nacelle-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.27 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
67
68
69
70
71
72
73
74
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"test:ci": "jest --clearCache && lerna run test:ci",
"dev:vercel": "vercel dev",
"lint": "lerna run lint",
"clean": "lerna clean",
"bootstrap": "lerna bootstrap --hoist --nohoist=@nacelle/client-js*",
"publish": "npm run build && lerna publish",
"create": "node ./scripts/create"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.35",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@storybook/addon-actions": "^6.0.5",
"@storybook/addon-essentials": "^6.0.5",
"@storybook/addon-links": "^6.0.5",
"@storybook/react": "^6.0.5",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.9",
"@types/react": "^16.9.46",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-jest": "^26.3.0",
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"delay": "^4.4.0",
"dotenv-safe": "^8.2.0",
"enquirer": "^2.3.6",
"eslint": "^7.6.0",
"eslint-plugin-jest-dom": "^3.1.7",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"fs-extra": "^9.0.1",
"graphql": "^14.7.0",
"husky": "^4.2.5",
"jest": "^26.3.0",
"jest-watch-typeahead": "^0.6.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"listr2": "^3.1.1",
"next": "^10.2.0",
"node-emoji": "^1.10.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.23.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.2.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents",
"pre-push": "npm run test:ci"
}
},
"dependencies": {}
}