-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"name": "rooset-ts",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "git@github.com:ddouglascarr/rooset.git",
"author": "Daniel Carr <d.douglas.carr@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --config ./conf/webpack.config.js",
"build-css": "npx tailwindcss-cli@latest build ./lffrontend/static/tailwind-in.css -o ./lffrontend/static/tailwind.css",
"start": "webpack-dev-server --config ./conf/webpack.config.js --host 0.0.0.0",
"lint": "eslint ./ --ext .ts,.tsx"
},
"devDependencies": {
"autoprefixer": "^9.8.6",
"@tailwindcss/typography": "^0.4.0",
"@types/express": "^4.17.2",
"@types/tinymce": "^4.5.24",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.17.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"tailwindcss": "^2.0.2",
"ts-loader": "^6.2.0",
"typescript": "^3.7.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@tinymce/tinymce-react": "^3.5.1",
"htmldiff-js": "^1.0.5",
"preact": "^10.5.12",
"tinymce": "^5.7.0"
}
}