-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·103 lines (103 loc) · 3.25 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
{
"name": "mind-history-extension",
"version": "1.2.0",
"description": "Browser extension for organise pages",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/LeoVS09/mind-history-extension.git"
},
"scripts": {
"build": "node build/production.js",
"start": "node build/dev-server.js",
"dev": "DEBUG=true NODE_ENV=development npm run start",
"lint": "yarn lintonly --fix",
"lintonly": "eslint src/**/*.{ts,tsx}",
"test": "jest",
"commit": "cz",
"semantic-release": "semantic-release",
"upload": "node build/upload.js"
},
"dependencies": {
"@hot-loader/react-dom": "^17.0.0",
"@material-ui/core": "^4.11.2",
"@reduxjs/toolkit": "^1.5.0",
"cytoscape": "^3.17.1",
"graphlib": "^2.1.8",
"query-string": "^6.13.8",
"react": "^17.0.1",
"react-cytoscapejs": "^1.2.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.9",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/chrome": "0.0.126",
"@types/cytoscape": "^3.14.11",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-redux": "^7.1.14",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"archiver": "^5.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"chrome-webstore-upload": "^0.4.4",
"chrome-webstore-upload-cli": "^1.2.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.2",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.0",
"eslint": "^7.12.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fs-extra": "^9.0.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0-alpha.14",
"husky": "^4.3.7",
"jest": "^26.6.3",
"node-sass": "^4.14.1",
"sass-loader": "^10.1.0",
"semantic-release": "^17.3.1",
"source-map-loader": "^1.1.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}