forked from purescript-react/purescript-react-basic-emotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "purescript-react-basic-emotion",
"version": "1.0.0",
"description": "[Emotion](https://emotion.sh/) support for [react-basic](https://github.com/lumihq/purescript-react-basic)!",
"main": "index.js",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lumihq/purescript-react-basic-emotion.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lumihq/purescript-react-basic-emotion/issues"
},
"homepage": "https://github.com/lumihq/purescript-react-basic-emotion#readme",
"dependencies": {
"@emotion/react": "^11.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"bower": "^1.8.12",
"npm-run-all": "^4.1.5",
"pulp": "^15.0.0",
"purescript": "^0.14.0",
"spago": "^0.19.1"
},
"scripts": {
"deps": "run-s deps:*",
"deps:spago": "spago install",
"deps:pulp": "bower install",
"build": "run-s build:*",
"build:spago": "spago build",
"build:pulp": "pulp build -o output-pulp",
"clean": "rm -rf .spago bower_components output output-pulp node_modules .pulp-cache .psci_modules"
}
}