-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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": "hashmap.sh",
"version": "1.0.0",
"description": "source repo for hashmap.sh site.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:prod": "webpack --mode='production'",
"build:dev": "webpack",
"start:dev": "npm run build:dev && ./scripts/static-host",
"start:prod": "npm run build:prod && ./scripts/static-host"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomasters/hashmap.sh.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/nomasters/hashmap.sh/issues"
},
"homepage": "https://github.com/nomasters/hashmap.sh#readme",
"devDependencies": {
"@types/material-ui": "^0.21.5",
"@types/react-tap-event-plugin": "^0.0.30",
"@types/react": "16.4.18",
"@types/react-dom": "^16.0.9",
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "4.5.4",
"source-map-loader": "0.2.4",
"typescript": "3.1.3",
"webpack": "4.23.1",
"webpack-cli": "3.1.2"
},
"dependencies": {
"@material-ui/core": "3.3.1",
"@material-ui/icons": "3.0.1",
"@material-ui/lab": "3.0.0-alpha.21",
"browser-process-hrtime": "1.0.0",
"hashmap-client": "0.1.1",
"prop-types": "15.6.2",
"react": "16.6.0",
"react-dom": "16.6.0",
"react-syntax-highlighter": "9.0.1"
}
}