-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 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
59
60
61
62
63
64
65
{
"name": "@alethio/cms",
"version": "1.0.0-beta.12",
"description": "Alethio Content Management System",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && ttsc -p . && npm run lint",
"clean": "rimraf ./dist",
"watch": "ttsc -p . --watch",
"lint": "tslint -c ./tslint.prod.json -p ./tsconfig.json",
"write-version": "node ./write-version",
"prepare": "npm run write-version && npm run build"
},
"keywords": [],
"author": "Alexandru Ciuca <alexandru.ciuca@consensys.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alethio/cms"
},
"devDependencies": {
"@types/node": "^12.12.17",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/react-router-dom": "^4.2.6",
"@types/react-router-hash-link": "^1.2.0",
"@types/semver": "^6.0.2",
"@types/task-graph-runner": "^1.0.0",
"@types/uuid": "^3.4.4",
"husky": "^1.3.1",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.8",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.2",
"styled-components": "^3.4.2",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"ttypescript": "^1.5.8",
"typescript": "^3.7.3",
"typescript-plugin-styled-components": "^1.0.0",
"typescript-styled-plugin": "^0.10.0",
"typescript-tslint-plugin": "^0.1.0"
},
"dependencies": {
"@alethio/ui": "^1.1.0",
"@puzzl/browser": "^1.0.0-beta.1",
"@puzzl/core": "^1.0.0-beta.1",
"react-router-dom": "^4.2.2",
"react-router-hash-link": "^1.2.1",
"semver": "^6.3.0",
"task-graph-runner": "^1.0.2",
"uuid": "^3.3.2"
},
"peerDependencies": {
"mobx": ">= 5.9.4",
"mobx-react": ">= 5.4.3",
"plugin-api": "*",
"react": ">= 16.8.6",
"react-dom": ">= 16.8.6",
"styled-components": ">= 3.4.2"
}
}