-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "codelabs-react",
"version": "3.2.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"build": "babel ./src --out-dir ./dist --ignore **.test.js",
"prepublish": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/react": "^6.1.11",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"baseui": "^9.106.2",
"esm": "^3.2.25",
"jest": "^26.6.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
},
"jest": {
"setupFilesAfterEnv": [
"./setup-tests.js"
],
"testPathIgnorePatterns": [
"dist"
]
},
"dependencies": {}
}