-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.26 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "web-conv",
"version": "1.0.0",
"description": "Gamepad synthesizer",
"scripts": {
"build": "cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig.commonjs.json webpack",
"dev": "cross-env TS_NODE_PROJECT=tsconfig.commonjs.json webpack serve",
"lint": "eslint 'src/**/*.{ts,tsx}' webpack.config.ts '.storybook/**/*.{ts,tsx}' && tsc --noEmit",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}' webpack.config.ts '.storybook/**/*.{ts,tsx}' && tsc --noEmit",
"prepare": "husky install",
"storybook": "cross-env TS_NODE_PROJECT=tsconfig.commonjs.json start-storybook -p 6006",
"storybook:build": "cross-env TS_NODE_PROJECT=tsconfig.commonjs.json build-storybook",
"storyshots": "cross-env NODE_ENV=test jest src/components/storyshots.test.ts",
"storyshots:update": "cross-env NODE_ENV=test jest --updateSnapshot src/components/storyshots.test.ts",
"test": "cross-env NODE_ENV=test jest"
},
"keywords": [],
"author": "livewing.net <dev@livewing.net> (https://livewing.net/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/livewing/web-conv.git"
},
"bugs": {
"url": "https://github.com/livewing/web-conv/issues"
},
"private": true,
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"\\.mdx?$": "<rootDir>/src/components/__mocks__/undefined.ts",
"\\.svg$": "<rootDir>/src/components/__mocks__/svgr.tsx"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"dependencies": {
"i18next": "^21.6.13",
"i18next-browser-languagedetector": "^6.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.5",
"styled-components": "^5.3.3",
"styled-icons": "^10.45.0",
"tone": "^14.7.77",
"uuid": "^8.3.2"
},
"devDependencies": {
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-storyshots": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@svgr/webpack": "^6.2.1",
"@testing-library/react": "^12.1.3",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/styled-components": "^5.1.24",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-styled-components": "^7.0.8",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"storybook-dark-mode": "^1.0.9",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.7",
"ts-node": "^10.6.0",
"typescript": "^4.6.2",
"typescript-styled-plugin": "^0.18.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"workbox-webpack-plugin": "^6.5.0",
"yaml-loader": "^0.6.0"
}
}