-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sidenotes",
"version": "1.1.1",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"google docs",
"comments"
],
"repository": {
"type": "git",
"url": "git+https://github.com/curvenote/sidenotes.git"
},
"bugs": {
"url": "https://github.com/curvenote/sidenotes/issues"
},
"homepage": "https://github.com/curvenote/sidenotes",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"dependencies": {},
"peerDependencies": {
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"uuid": "^8.3.2"
},
"scripts": {
"clean": "rm -rf dist;",
"compile": "yarn run clean; tsc;",
"build-css": "sass styles/index.scss dist/sidenotes.css",
"build": "yarn run clean; tsc; yarn run build-css; webpack --config webpack.prod.js",
"prepublishOnly": "yarn run build;",
"start": "webpack serve --open --config webpack.dev.js",
"dev": "webpack --config webpack.dev.js",
"lint": "eslint \"src/**/*.ts\" -c .eslintrc.js",
"lint:format": "prettier --check \"src/**/*.ts\" \"styles/**/*.scss\" \"src/**/*.tsx\"",
"watch": "tsc -w -p ."
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@types/react": "^17.0.48",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.24",
"@types/uuid": "^8.3.4",
"classnames": "^2.3.1",
"css-loader": "^6.7.1",
"eslint-config-curvenote": "*",
"express": "^4.18.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"redux-thunk": "^2.4.1",
"sass": "^1.54.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"uuid": "^8.3.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"dist"
]
}