forked from learn-javascript-courses/rejection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "rejection",
"version": "1.0.0",
"description": "A student project for [Learn JavaScript with Eric Elliott](https://ericelliottjs.com).",
"main": "index.js",
"scripts": {
"dev": "npx next",
"build": "npx next build",
"start": "npx next start",
"test": "riteway -r @babel/register -r @babel/polyfill \"src/index.test.js\" | tap-nirvana"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CCole/rejection.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CCole/rejection/issues"
},
"homepage": "https://github.com/CCole/rejection#readme",
"dependencies": {
"@material-ui/core": "^4.9.9",
"bootstrap-css-only": "^4.4.1",
"cuid": "^2.1.8",
"next": "^9.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"esm": "^3.2.25",
"prettier": "^2.0.4",
"riteway": "^6.1.1",
"tap-nirvana": "^1.1.0"
}
}