-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
125 lines (125 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "frontend",
"version": "1.9.1",
"private": true,
"engines": {
"node": "16.8.0"
},
"workspaces": [
"elm-book"
],
"scripts": {
"build": "yarn bundle",
"build-book": "cd elm-book && yarn build",
"bundle": "NODE_ENV=production yarn webpack --color --mode=production --config config/webpack.config.prod.js",
"start": "yarn check-js && node scripts/start.js",
"start-book": "cd elm-book && yarn start",
"review": "elm-review && cd elm-book && elm-review",
"check-js": "standard",
"check-format": "elm-format ./ --validate",
"check-css": "stylelint \"./src/**/*.css\" \"./elm-book/src/**/*.css\"",
"make": "elm make",
"repl": "elm repl",
"reactor": "elm reactor",
"test": "elm-test",
"generate-graphql": "npx elm-graphql https://staging.cambiatus.io/api/graph --base Cambiatus --output src/elm",
"postinstall": "cp ./node_modules/pdfjs-dist/es5/build/pdf.worker.min.js ./public"
},
"husky": {
"hooks": {
"pre-push": "echo \"Checking JS with StandardJS...\" && yarn check-js && echo \"Checking CSS with StyleLint\" && yarn check-css && echo \"Checking Elm with elm-format...\" && yarn check-format && echo \"Checking Elm with elm-review...\" && yarn review && echo \"Checking Elm with elm-test\" && yarn test && echo \"Checking if elm-book compiles\" && yarn build-book"
}
},
"standard": {
"plugins": [
"html"
],
"parser": "babel-eslint",
"ignore": [
"docker/env-config.js",
"scripts/"
]
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-transform-runtime": "7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/runtime": "7.3.4",
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^10.4.2",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"chalk": "^2.3.1",
"connect-history-api-fallback": "^1.5.0",
"cosmiconfig": "^5.0.6",
"dotenv": "^5.0.0",
"elm-debug-transformer": "^1.0.4",
"elm-hot-webpack-loader": "^1.0.2",
"eslint": "5.16.0",
"eslint-plugin-html": "5.0.5",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^4.0.0-alpha.2",
"http-proxy-middleware": "^0.17.4",
"mini-css-extract-plugin": "^0.4.0",
"minimist": "1.2.6",
"postcss-flexbugs-fixes": "^3.3.0",
"promise": "8.0.1",
"react-error-overlay": "^4.0.0",
"standard": "^12.0.1",
"string-replace-loader": "^2.1.1",
"style-loader": "^0.21.0",
"sw-precache-webpack-plugin": "^0.11.5",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.40.2",
"webpack-dev-server": "^3.1.1",
"webpack-manifest-plugin": "^2.0.3",
"whatwg-fetch": "2.0.4"
},
"dependencies": {
"@absinthe/socket": "^0.2.1",
"@dillonkearns/elm-graphql": "^4.0.3",
"@paypal/paypal-js": "^4.0.6",
"@sentry/browser": "5.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"babel-runtime": "^6.26.0",
"bip39": "^3.0.4",
"copy-webpack-plugin": "^5.0.4",
"create-elm-app": "^4.0.0",
"css-loader": "^0.28.9",
"drag-drop-touch": "^1.3.1",
"elm": "^0.19.1-5",
"elm-asset-webpack-loader": "^1.1.1",
"elm-format": "^0.8.5",
"elm-review": "^2.8.2",
"elm-test": "^0.19.1-revision7",
"elm-webpack-loader": "^6.0.1",
"eosjs": "^16.0.9",
"eosjs-ecc": "^4.0.4",
"focus-visible": "^5.2.0",
"git-hash-webpack-plugin": "^1.0.1",
"husky": "^4.2.5",
"pdfjs-dist": "^2.7.570",
"pdfmake": "^0.1.64",
"phoenix": "^1.4.10",
"postcss": "^8.4.31",
"postcss-cli": "^6.1.3",
"postcss-focus-visible": "^6.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^4",
"quill": "^1.3.7",
"react-dev-utils": "^11.0.4",
"scrypt-async": "^2.0.1",
"sjcl": "^1.0.8",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^22.0.0",
"sw-precache": "^5.2.1",
"tailwindcss": "^2.2.19",
"tailwindcss-transforms": "^2.2.0",
"webpack-cli": "^3.3.9"
}
}