-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.04 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@next-book/interface",
"version": "1.0.7",
"description": "Next-book’s browser interface",
"repository": {
"type": "git",
"url": "git+https://github.com/next-book/interface.git"
},
"main": "lib/index.js",
"scripts": {
"ts": "tsc",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:css && npm run bundle",
"build:types": "tsc --emitDeclarationOnly --watch",
"build:js-dev": "webpack --mode development --watch",
"build:css": "sass src/scss/style.scss dist/interface.css",
"build:css-dev": "sass src/scss/style.scss dist/interface.css --watch",
"bundle": "webpack --mode production",
"test": "jest"
},
"author": "Jan Martinek",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^16.2.14",
"@types/react-redux": "^7.1.24",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"sass": "^1.50.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@next-book/analytics": "^0.0.3",
"@next-book/publisher": "^1.0.2",
"@types/fscreen": "^1.0.1",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"cuid": "^2.1.8",
"fscreen": "^1.2.0",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"keycode": "^2.2.1",
"lodash": "^4.17.21",
"numbro": "^2.3.6",
"react": "^18.0.0",
"react-contenteditable": "^3.3.6",
"react-dom": "^18.0.0",
"react-ga4": "^1.4.1",
"react-i18next": "^11.16.7",
"react-redux": "^8.0.1",
"redux": "^4.2.0",
"to-milliseconds": "^1.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"bugs": {
"url": "https://github.com/next-book/interface/issues"
},
"homepage": "https://github.com/next-book/interface#readme",
"directories": {
"lib": "lib"
}
}