-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.92 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
{
"name": "purescript-lumi-components",
"version": "0.0.0",
"description": "Lumi UI components",
"private": true,
"main": "index.js",
"homepage": "https://lumihq.github.io/purescript-lumi-components",
"repository": "lumihq/purescript-lumi-components",
"files": [
"src/components"
],
"scripts": {
"start": "run-s watch",
"prewatch": "run-s eslint build:purs",
"watch": "run-p watch:js watch:purs",
"watch:js": "webpack-dev-server -wd --port 3000 --host 0.0.0.0",
"watch:purs": "pulp -w build -I docs",
"prebuild": "run-s eslint",
"build": "run-s build:purs build:js",
"build:js": "webpack -p",
"build:purs": "pulp build -I docs",
"setup": "npm install && bower install && spago install",
"eslint": "eslint --ext .js,.jsx src docs webpack.config.js",
"pscid": "pscid -I docs",
"pscid:build": "run-s build:purs",
"predeploy": "run-s build",
"deploy": "gh-pages -d build",
"clean": "rm -rf build output generated-docs .psa-stash .pulp-cache .psci-modules",
"clean:deps": "rm -rf node_modules bower_components",
"clean:everything": "run-s clean clean:deps"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"big-integer": "^1.6.48",
"jss": "^10.3.0",
"jss-preset-default": "^10.3.0",
"qrcode.react": "^3.1.0",
"react": "^18.0.0",
"react-dnd": "^11.0.0",
"react-dnd-html5-backend": "^11.0.0",
"react-dom": "^18.0.0",
"react-media-hook": "^0.5.0",
"react-password-strength-bar": "^0.4.1"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bower": "^1.8.4",
"change-case": "^4.1.1",
"chokidar": "^3.5.3",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"gh-pages": "^3.1.0",
"git-revision-webpack-plugin": "^3.0.6",
"html-webpack-plugin": "^4.3.0",
"npm-run-all": "^4.1.5",
"null-loader": "^4.0.0",
"purescript": "0.15.2",
"prettier": "^2.0.5",
"pscid": "^2.9.3",
"pulp": "^16.0.0",
"purescript-psa": "^0.7.3",
"react-loadable": "^5.5.0",
"react-media": "^1.10.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"resource-hints-webpack-plugin": "^0.0.2",
"spago": "^0.21.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"source-map-loader": "^1.0.1",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-subresource-integrity": "^1.4.1"
}
}