-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "keyserver",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:TrustedCapsules/keyserver.git",
"author": "Eric Semeniuc <eric.semeniuc@alumni.ubc.ca>",
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"awesome-typescript-loader": "^5.2.1",
"source-map-loader": "^0.2.4",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"start": "webpack --mode development && python3 backend/keyserver.py",
"devstart": "webpack-dev-server --config ./webpack.config.js --mode development --open",
"build": "webpack --mode development",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@types/react": "^16.8.8",
"@types/react-beautiful-dnd": "^10.1.0",
"@types/react-dom": "^16.8.2",
"@types/superagent": "^4.1.1",
"react": "^16.8.4",
"react-beautiful-dnd": "^10.1.0",
"react-dom": "^16.8.4",
"react-dropzone": "^10.1.0",
"superagent": "^5.0.2"
}
}