-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "bird",
"version": "1.0.0",
"description": "The Hiddentity Webapp",
"main": "index.js",
"repository": "https://github.com/hiddentityfr/bird.git",
"author": "Hiddentity Developers Team <dev@hiddentity.fr>",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"test": "smashtest --test-server=http://localhost:4444/wd/hub tests/*.smash"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --write",
"npm run lint"
]
},
"dependencies": {
"next": "^9.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5",
"smashtest": "^1.7.0",
"typescript": "^3.9.2",
"webdriver-manager": "^12.1.7"
}
}