-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 KB
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
{
"name": "testcasemgmt",
"version": "0.0.1",
"description": "Yet another test case management tool",
"main": "index.js",
"scripts": {
"start": "webpack --mode=development",
"build": "webpack --mode=production",
"dev": "webpack serve --mode=development",
"test": "npx cypress run",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lemgrb/testcasemgmt.git"
},
"keywords": [
"testing",
"test",
"management"
],
"author": "Lemuel Bulangis",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/lemgrb/testcasemgmt/issues"
},
"homepage": "https://github.com/lemgrb/testcasemgmt#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"@storybook/react": "^6.3.12",
"@testing-library/react": "^12.1.2",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"cypress": "^8.7.0",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"style-loader": "^3.3.1",
"tailwindcss": "^2.2.19",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"@storybook/addon-postcss": "^2.0.0",
"@testing-library/jest-dom": "^5.15.0",
"axios": "^0.24.0",
"dotenv-webpack": "^7.0.3",
"faker": "^5.5.3",
"history": "^5.1.0",
"jest": "^27.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.1",
"regenerator-runtime": "^0.13.9"
},
"jest": {
"testEnvironment": "jsdom"
}
}