This repository has been archived on 2022-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
tlaternet-templates/package.json

67 lines
1.9 KiB
JSON
Raw Normal View History

2018-04-04 21:05:31 +01:00
{
"name": "tlaternet",
"version": "1.0.0",
"description": "tlaternet web interface",
"author": "Tristan Maat <tm@tlater.net>",
"license": "MIT",
"private": true,
"dependencies": {
2020-07-11 23:50:41 +01:00
"@fortawesome/fontawesome-free": "^5.13.1",
"bootstrap": "^4.5.0",
"classnames": "^2.2.6",
2020-07-11 23:50:41 +01:00
"immutability-helper": "^3.1.1",
2020-05-30 20:43:15 +01:00
"jquery": "^3.5.1",
2020-02-09 02:43:42 +00:00
"popper.js": "^1.16.1",
2020-07-11 23:50:41 +01:00
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
2020-07-11 23:50:41 +01:00
"redux-act": "^1.8.0",
2021-04-07 21:39:24 +01:00
"three": "^0.127.0"
},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.13.0",
"@parcel/transformer-sass": "2.0.0-beta.2",
2021-04-07 22:55:42 +01:00
"@parcel/validator-typescript": "2.0.0-beta.2",
2021-04-07 21:39:24 +01:00
"@types/jquery": "^3.5.0",
"@types/react": "^16.9.41",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.9",
"@types/three": "^0.127.0",
2021-04-07 22:55:42 +01:00
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
2021-04-07 21:39:24 +01:00
"jstransformer-markdown-it": "^2.1.0",
"parcel": "2.0.0-beta.2",
"posthtml-extend": "^0.6.0",
2021-04-07 21:39:24 +01:00
"posthtml-favicons": "^1.3.0",
"posthtml-include": "^1.7.0",
"posthtml-md": "^1.1.0",
2020-07-11 23:50:41 +01:00
"sass": "^1.26.10",
2021-04-07 22:55:42 +01:00
"typescript": "^4.2.4",
2020-07-11 23:50:41 +01:00
"typescript-language-server": "^0.4.0"
2018-04-04 21:05:31 +01:00
},
2021-04-07 21:41:11 +01:00
"resolutions": {
"sharp": "0.26.3"
},
2018-04-04 21:05:31 +01:00
"scripts": {
2021-04-07 21:41:11 +01:00
"preinstall": "npx npm-force-resolutions",
"build": "parcel build --no-autoinstall src/index.html",
"serve": "parcel serve --no-autoinstall src/index.html",
"watch": "parcel watch --no-autoinstall src/index.html",
"build-dist": "parcel build --no-cache --no-autoinstall src/index.html; rename '.html' '.html.hbs' dist/browser/*.html"
},
"targets": {
"browser": {
"engines": {
"browsers": [
">1%",
"not dead"
]
},
"distDir": "dist"
}
2018-04-04 21:05:31 +01:00
}
}