-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
105 lines (105 loc) · 3.71 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
{
"name": "waves",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn install && yarn build",
"build": "yarn lerna:run-deps build",
"clean": "run-p clean:*",
"clean:build": "lerna run clean:build --parallel",
"clean:node_modules": "lerna run clean:node_modules --parallel && rimraf node_modules",
"firebase": "firebase",
"onchange": "onchange",
"lerna": "lerna",
"lerna:run": "lerna run",
"lerna:run-deps": "lerna run --include-dependencies --stream",
"killallNode": "killall node",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"test": "lerna run test --parallel",
"postinstall": "patch-package",
"lint:css": "stylelint './src/**/*.{ts,tsx}'",
"rebootstrap": "run-s clean bootstrap killallNode",
"reinstall": "yarn clean:node_modules && yarn install && yarn killallNode",
"firebase:exportConfig": "yarn firebase functions:config:get > .runtimeconfig.json",
"firebase:deploy": "run-s 'lerna:run-deps --scope @waves/functions build' 'firebase deploy'",
"firebase:deploy:functions": "run-s 'lerna:run-deps --scope @waves/functions build' 'firebase deploy --only functions'",
"firebase:indexes": "yarn firebase firestore:indexes",
"dev:client": "yarn lerna:run-deps --scope @waves/functions --scope @waves/client --parallel dev"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/array.prototype.flat": "^1.2.1",
"@types/codemirror": "^0.0.95",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dom-to-image": "^2.6.0",
"@types/ffmpeg-static": "^3.0.0",
"@types/fluent-ffmpeg": "^2.1.14",
"@types/jest": "^24.0.0",
"@types/js-search": "^1.4.0",
"@types/node": "^12.0.0",
"@types/prismjs": "^1.16.1",
"@types/puppeteer": "^3.0.0",
"@types/ramda": "^0.27.6",
"@types/react": "^16.9.0",
"@types/react-autosuggest": "^9.3.14",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-color": "^3.0.1",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.5",
"@types/react-timeago": "^4.1.1",
"@types/shortid": "^0.0.29",
"@types/yup": "^0.29.3",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "3.0.0",
"eslint": "^7.0.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-unicorn": "20.0.0",
"firebase-functions-test": "^0.2.0",
"firebase-tools": "^8.4.2",
"husky": "^4.2.5",
"import-sort-style-module": "6.0.0",
"lerna": "^3.22.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.0.5",
"prettier-plugin-import-sort": "0.0.4",
"react-scripts": "3.4.1",
"rimraf": "^3.0.2",
"stylelint": "13.5.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"ts-loader": "^7.0.5",
"typescript": "3.8.3",
"use-yarn": "^2.2.0",
"utility-types": "^3.10.0"
},
"importSort": {
".ts,.tsx,.js,.jsx": {
"style": "module"
}
},
"engines": {
"node": "10.21.0",
"yarn": "1.17.0"
}
}