-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "tfg-motor-grafico",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "next --port 3000",
"build": "next build",
"start": "next start",
"test": "jest",
"test-dev": "NODE_ENV=development npx jest --watch"
},
"keywords": [],
"author": "Jose M. Segade",
"license": "ISC",
"dependencies": {
"@types/mocha": "^5.2.7",
"next": "^9.0.6",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-node": "^8.6.2"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@types/react": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-jest": "^24.9.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}