-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.08 KB
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
{
"name": "gatsby-purescript-example",
"version": "0.1.0",
"description": "Example app using Gatsby.js with Purescript",
"keywords": [
"Gatsby.js",
"Purescript",
"React"
],
"author": "Jonas Buntinx",
"license": "MIT",
"dependencies": {
"gatsby": "^2.20.17",
"gatsby-plugin-postcss": "2.2.1",
"gatsby-plugin-purescript": "^2.0.0",
"gatsby-plugin-purgecss": "5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"pscid": "^2.9.0",
"purescript": "^0.13.6",
"purescript-psa": "^0.7.3",
"purty": "^6.1.2",
"spago": "^0.14.0"
},
"scripts": {
"postinstall": "$(yarn bin)/spago install",
"clean": "$(yarn bin)/gatsby clean && rm -Rf .cache public output",
"dev": "$(yarn bin)/gatsby develop",
"pscid:build": "$(yarn bin)/spago build",
"build": "$(yarn bin)/gatsby build",
"rebuild": "yarn clean && yarn build",
"start": "yarn clean && yarn build && $(yarn bin)/gatsby serve",
"id": "$(yarn bin)/pscid",
"test": "$(yarn bin)/spago test"
}
}