-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "cl-test",
"version": "0.0.0",
"description": "Testing ground for the Code.org Component Library",
"repository": {
"type": "git",
"url": "https://github.com/madelynkasula/cl-test.git"
},
"main": "index.js",
"scripts": {
"build": "NODE_ENV=development lerna run build",
"build:prod": "NODE_ENV=production lerna run build",
"bootstrap": "lerna bootstrap",
"preversion": "npm run build:prod && npm run test",
"publish": "lerna publish --conventional-commits",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./docs/"
},
"author": "Maddie Kasula",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@storybook/addon-actions": "^6.4.1",
"@storybook/addon-essentials": "^6.4.1",
"@storybook/addon-links": "^6.4.1",
"@storybook/builder-webpack5": "^6.4.1",
"@storybook/manager-webpack5": "^6.4.1",
"@storybook/react": "^6.4.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"mini-css-extract-plugin": "^2.5.2",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.scss$": "<rootDir>/__mocks__/styleMock.js"
}
}
}