This repository has been archived by the owner on Apr 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
105 lines (105 loc) · 4.05 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "catarse.js",
"version": "1.0.37",
"author": "Diogo Biazus",
"browserslist": "> 0.25%, not dead",
"contributors": [
{
"name": "Vinícius Andrade",
"email": "[email protected]"
}
],
"description": "Catarse JS components",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.11.1",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-eval": "^7.0.0-beta.38",
"@babel/plugin-transform-for-of": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime-corejs3": "^7.8.3",
"@types/jasmine": "^3.5.11",
"@types/mithril": "^2.0.2",
"@types/underscore": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-root-import": "^6.5.0",
"css-loader": "^3.4.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^1.5.0",
"ifdef-loader": "^2.1.1",
"jasmine": "^3.5.0",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^2.99.1",
"jasmine-matchers": "^0.2.3",
"jasmine-species": "^0.8.5",
"jshint-stylish": "^2.2.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^0.3.8",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^3.0.5",
"mithril-query": "^3.1.0",
"node-sass": "^4.13.1",
"puppeteer": "^1.5.0",
"rxjs": "^6.6.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.2",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2",
"uglifyjs-webpack-plugin": "^1.2.6",
"webpack": "^4.43.0"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"start": "webpack -d --watch",
"start-dev": "NODE_OPTIONS=\"--max-old-space-size=512\" webpack -d --watch",
"build": "./node_modules/.bin/webpack",
"build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --mode production",
"build:dev": "./node_modules/.bin/webpack-dev-server"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@sentry/browser": "^5.7.1",
"chart.js": "1.0.2",
"core-js": "^3.6.4",
"i18n-js": "^1.0.0",
"jquery": "^3.3.1",
"liquidjs": "^5.3.0-0",
"mithril": "^1.1.6",
"mithril-hooks": "https://github.com/grpse/mithril-hooks.git#v0.6.1-root",
"mithril-postgrest": "https://github.com/grpse/mithril-postgrest.git#4.2.0",
"moment": "~> 2.19.3",
"moment-timezone": "^0.5.16",
"resolve-cwd": "^3.0.0",
"select": "^1.1.2",
"underscore": "^1.9.1",
"webpack-cli": "^3.0.4"
}
}