-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 797 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 797 Bytes
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
{
"name": "webflix",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest -c ./jest.config.js",
"test:ci": "jest -c ./jest.config.js --coverage"
},
"dependencies": {
"@common-web/ts-config": "^1.0.1",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.12.0",
"next": "10.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@common-web/jest": "^1.0.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"typescript": "^4.1.3"
}
}