This repository was archived by the owner on Jan 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.92 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
54
55
56
57
58
{
"name": "trustlines-network-clientlib-docs",
"engines": {
"node": ">=6.12"
},
"description": "react-docs documentation for the trustlines-network clientlib",
"scripts": {
"lint": "tslint --project .",
"build": "tsc",
"build:prod": "NODE_ENV=production webpack",
"watch": "tsc -w",
"clean": "shx rm -rf lib; shx rm -f docs/bundle*",
"dev": "webpack-dev-server --open",
"deploy": "yarn build:prod && git add ./docs && git commit -m 'Add new production build' && git push"
},
"author": "Dong-Ha Kim",
"bugs": {
"url": "https://github.com/trustlines-network/contracts/issues"
},
"homepage": "https://github.com/trustlines-network/contracts/README.md",
"repository": {
"type": "git",
"url": "https://github.com/trustlines-network/contracts.git"
},
"devDependencies": {
"@0xproject/tslint-config": "^0.4.18",
"@types/lodash": "4.14.104",
"@types/material-ui": "0.18.0",
"@types/node": "^8.0.53",
"@types/react": "16.3.13",
"@types/react-dom": "^16.0.3",
"@types/react-tap-event-plugin": "0.0.30",
"awesome-typescript-loader": "^3.1.3",
"copyfiles": "^1.2.0",
"css-loader": "^0.28.9",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"make-promises-safe": "^1.1.0",
"raw-loader": "^0.5.1",
"shx": "^0.2.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.2",
"tslint": "^5.9.1",
"typescript": "^3.0.0",
"webpack": "^3.11.0",
"webpack-dev-server": "2.11.5"
},
"dependencies": {
"@0xproject/react-docs": "^0.0.12",
"basscss": "^8.0.3",
"lodash": "^4.17.13",
"material-ui": "^0.17.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-tap-event-plugin": "^2.0.1"
}
}