-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 2.41 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
{
"name": "IDF-storybook",
"version": "0.0.1",
"description": "Introduction to visual testing",
"repository": "https://github.com/urmastalimaa/interactive-frontend-development",
"author": "Urmas Talimaa",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/eslint-parser": "^7.13.4",
"@babel/plugin-proposal-object-rest-spread": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.0",
"@mdx-js/react": "^1.6.22",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-docs": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/dom": "^8.11.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"express": "^4.17.1",
"jest": "^27.4.7",
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
"prettier": "^2.2.1",
"rollup": "^2.39.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"uuid": "^8.3.2"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"build:watch": "rollup --config rollup.config.js --watch",
"format": "prettier --write .",
"lint": "eslint .",
"start": "rollup --config rollup.config.js --watch --environment START_BROWSER:true",
"start:server": "node ./server.js",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch",
"build:storybook": "build-storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^8.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.2.0",
"websocket": "^1.0.34"
}
}