0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-12-01 04:12:23 +01:00
posthog/frontend/package.json

44 lines
867 B
JSON
Raw Normal View History

2020-01-23 23:46:27 +01:00
{
2020-01-25 00:57:57 +01:00
"name": "frontend2",
"version": "0.1.0",
2020-01-23 23:46:27 +01:00
"description": "",
"scripts": {
2020-01-25 00:57:57 +01:00
"start": "parcel watch index.html",
"build": "parcel build index.html"
2020-01-23 23:46:27 +01:00
},
2020-01-25 00:57:57 +01:00
"license": "MIT",
"dependencies": {
"@babel/core": "^7.5.5",
"babel-preset-nano-react-app": "^0.1.0",
"bootstrap": "^4.4.1",
"moment": "^2.24.0",
"parcel-bundler": "1.11.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.1.0",
"react-stripe-elements": "^6.0.1"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
},
"devDependencies": {
"sass": "^1.25.0"
}
2020-01-23 23:46:27 +01:00
}