forked from roam-unofficial/roam-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.01 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
{
"name": "roam-toolkit",
"version": "0.1.0",
"description": "Roam power multiplier",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack -d",
"prod": "cross-env NODE_ENV=production webpack -p",
"watch": "cross-env NODE_ENV=watch webpack -d",
"clean": "rm -rf ./dist",
"clean:all": "rm -rf ./dist && rm -rf ./coverage && rm -rf ./node_modules",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"prettify": "prettier --write src/**/*.{ts,tsx,json,html}",
"lint": "tslint src/**/*.ts{,x}"
},
"license": "MIT",
"dependencies": {
"chrono-node": "^1.4.2",
"dateformat": "^3.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hotkeys": "^2.0.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"styled-components": "^5.0.0",
"webext-redux": "^2.1.6"
},
"devDependencies": {
"@types/chrome": "^0.0.92",
"@types/dateformat": "^3.0.1",
"@types/jest": "^24.9.1",
"@types/node": "^13.5.0",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "^4.4.2",
"@types/webpack": "^4.41.3",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-extended": "^0.11.5",
"prettier": "^2.0.5",
"react-test-renderer": "^16.12.0",
"ts-jest": "^25.0.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"webextension-polyfill-ts": "^0.12.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4"
},
"repository": {
"type": "git",
"url": "[email protected]:roam-unofficial/roam-toolkit.git\""
}
}