-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.45 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
{
"name": "nextjs-default",
"version": "1.0.0",
"author": "Patrick Stapfer <[email protected]>",
"license": "Apache License 2.0",
"dependencies": {
"@fullhuman/postcss-purgecss": "^1.2.0",
"@glennsl/bs-json": "^3.0.0",
"@zeit/next-css": "^1.0.1",
"bs-fetch": "^0.3.1",
"bs-platform": "^7.0.1",
"gentype": "^3.6.0",
"graphql": "^14.5.8",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.1.6",
"next-transpile-modules": "^2.3.1",
"next-urql": "^0.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-is": "^16.12.0",
"reason-react": "^0.7.0",
"reason-urql": "^1.4.1",
"request": "^2.88.0",
"styled-components": "^4.4.1"
},
"scripts": {
"dev": "next",
"build": "bsb -clean-world -make-world && next build",
"now-build": "bsb -clean-world -make-world && next build",
"export": "next export",
"start": "next start -p $PORT",
"bs:build": "bsb -make-world",
"bs:clean": "bsb -clean-world",
"bs:start": "bsb -make-world -w",
"sync-schema": "graphql get-schema && node ./generateFragmentTypes.js",
"generate-ppx-schema": "node ./node_modules/gql-tools/cli/gqlschema.js -o graphql_schema.json schema.graphql",
"genint": "bsc -bs-re-out lib/bs/pages/Uuid.cmi"
},
"devDependencies": {
"@baransu/graphql_ppx_re": "^0.4.6",
"autoprefixer": "^9.5.1",
"cssnano": "^4.1.10",
"postcss-easy-import": "^3.0.0",
"tailwindcss": "1.1.3"
}
}