-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.74 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "aria",
"version": "1.0.0",
"description": "Easy-to-use music sequencer inspired by Little Big Planet 2 + 3. ",
"homepage": "https://ariaapp.netlify.app",
"main": "src/index.js",
"private": true,
"scripts": {
"build": "react-scripts build",
"ci": "yarn lint && yarn build-storybook && yarn build && CI=true yarn test",
"clean": "rimraf build coverage storybook-static",
"lint-eslint": "eslint \"src/**\" --fix --ignore-pattern \"src/**/*.json\"",
"lint-prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "yarn lint-eslint && yarn lint-prettier",
"start": "react-scripts start",
"test": "react-scripts test",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@apollo/client": "^3.4.1",
"@emotion/css": "^11.1.3",
"@emotion/react": "11.4.0",
"@loadable/component": "5.15.0",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.7",
"aria-ui": "^2.3.0",
"csstype": "3.0.8",
"date-fns": "2.22.1",
"deep-diff": "^1.0.2",
"event-emitter": "^0.3.5",
"framer-motion": "^4.1.17",
"graphql": "15.5.1",
"i18next": "^20.3.3",
"i18next-browser-languagedetector": "^6.1.1",
"lodash": "^4.17.12",
"mdi-react": "^7.5.0",
"memoize-one": "^5.2.1",
"msw": "0.24.4",
"msw-storybook-addon": "^1.2.0",
"polished": "^4.1.2",
"prop-types": "15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-draggable": "^4.0.3",
"react-fast-compare": "^3.2.0",
"react-hook-form": "^7.11.1",
"react-hotkeys": "^2.0.0",
"react-i18next": "^11.11.3",
"react-router-dom": "^5.2.0",
"recoil": "0.3.1",
"tone": "^14.7.77"
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/node-logger": "^6.3.4",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.4",
"@types/deep-diff": "1.0.1",
"@types/event-emitter": "0.3.3",
"@types/jest": "26.0.24",
"@types/loadable__component": "5.13.4",
"@types/lodash": "4.14.171",
"@types/node": "15.12.5",
"@types/prettier": "2.3.2",
"@types/prop-types": "15.7.4",
"@types/reach__router": "1.3.9",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/testing-library__jest-dom": "5.14.1",
"@welldone-software/why-did-you-render": "^6.2.0",
"babel-eslint": "^10.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-testing-library": "^4.6.0",
"husky": "4.3.0",
"prettier": "2.3.2",
"react-scripts": "4.0.3",
"rimraf": "^3.0.2",
"typescript": "4.3.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"author": "",
"license": "MIT",
"jest": {
"transform": {
"(@babel/runtime).+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!@babel/runtime)"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickjohnson-dev/aria.git"
},
"resolutions": {
"babel-loader": "8.1.0"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && CI=true yarn test"
}
},
"bugs": {
"url": "https://github.com/nickjohnson-dev/aria/issues"
},
"proxy": "http://localhost:5000",
"msw": {
"workerDirectory": "public"
}
}