-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 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
{
"name": "mcm-js",
"version": "01.0.1-8",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "next dev",
"dev:watch": "next dev & jest --watch",
"prepare": "rm -rf dist && mkdir dist && tsc",
"start": "next start",
"lint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"sb": "start-storybook -p 6006 -s ./public",
"build:sb": "build-storybook s public",
"test": "cross-env NODE_ENV=test jest --coverage && start-storybook -p 6006 -s public"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"mcm-js-commons": "^0.0.75",
"next": "^13.3.0",
"react": "18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.7",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-loader": "^8.3.0",
"eslint": "^8.34.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mock-fs": "^5.2.0",
"prettier": "2.8.7",
"react-test-renderer": "^18.2.0",
"typescript": "4.9.5"
}
}