-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.48 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
{
"name": "thesis-us",
"private": true,
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.10",
"@babel/preset-react": "7.12.10",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.2",
"@storybook/addon-actions": "6.1.21",
"@storybook/addon-essentials": "6.1.21",
"@storybook/addon-links": "6.1.21",
"@storybook/react": "6.1.21",
"babel-jest": "27.0.2",
"babel-loader": "8.2.2",
"babel-preset-minify": "0.5.1",
"chromatic": "5.7.0",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.2",
"jest": "26.0.1",
"jest-styled-components": "7.0.4",
"lerna": "4.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"rebass": "4.0.7",
"rimraf": "3.0.2",
"styled-components": "5.2.1"
},
"dependencies": {},
"scripts": {
"clear:lib": "rimraf ./packages/**/lib/",
"bootstrap": "lerna bootstrap",
"start": "yarn clear:lib && lerna exec --parallel -- babel --root-mode upward src -d lib --ignore test.js,stories.js,demo.js --watch",
"build": "yarn clear:lib && lerna exec --parallel -- babel --root-mode upward src -d lib --ignore test.js,stories.js,demo.js",
"build:storybook": "build-storybook",
"start:storybook": "start-storybook -p 6006",
"test": "jest --config jest.json",
"test:coverage": "yarn test --coverage",
"chromatic": "npx chromatic --project-token 9e946e15520a",
"bump:version": "lerna version",
"release": "lerna publish from-package"
}
}