-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
104 lines (104 loc) · 3.21 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
{
"name": "frontend",
"version": "1.9.1",
"private": true,
"engines": {
"node": "14.8.0"
},
"scripts": {
"build": "yarn bundle",
"bundle": "NODE_ENV=production yarn webpack --color --mode=production --config config/webpack.config.prod.js",
"start": "standard && GRAPHQL_SECRET=gAK2_Fdjyy8 node scripts/start.js",
"review": "elm-review",
"make": "elm make",
"repl": "elm repl",
"reactor": "elm reactor",
"test": "npx 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...\" && standard && echo \"Checking Elm with elm-review...\" && yarn review"
}
},
"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.2.6",
"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.3",
"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",
"@sentry/browser": "5.4.0",
"@tailwindcss/forms": "^0.3.2",
"axios": "^0.21.1",
"babel-runtime": "^6.26.0",
"bip39": "^2.5.0",
"copy-webpack-plugin": "^5.0.4",
"create-elm-app": "^4.0.0",
"css-loader": "^0.28.9",
"elm": "^0.19.1-3",
"elm-asset-webpack-loader": "^1.1.1",
"elm-format": "^0.8.3",
"elm-review": "^2.3.2",
"elm-test": "^0.19.1",
"elm-webpack-loader": "^6.0.1",
"eosjs": "^16.0.9",
"eosjs-ecc": "^4.0.4",
"husky": "^4.2.5",
"pdfjs-dist": "^2.7.570",
"pdfmake": "^0.1.64",
"phoenix": "^1.4.10",
"postcss": "^8.3.0",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^4",
"react-dev-utils": "^11.0.4",
"scrypt-async": "^2.0.1",
"sjcl": "^1.0.8",
"sw-precache": "^5.2.1",
"tailwindcss": "^2.1.2",
"tailwindcss-transforms": "^2.2.0",
"webpack-cli": "^3.3.9"
}
}