-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.94 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
{
"name": "rescript-nextjs-linaria-template",
"version": "1.0.0",
"author": "Tomé Vardasca <tomvardasca@users.noreply.github.com>",
"license": "Apache License 2.0",
"dependencies": {
"@babel/core": "^7.12.17",
"@linaria/babel-preset": "^3.0.0-beta.1",
"@linaria/core": "^3.0.0-beta.1",
"@linaria/react": "^3.0.0-beta.1",
"@linaria/shaker": "^3.0.0-beta.1",
"@rescript/react": "0.10.1",
"express": "^4.17.1",
"gentype": "^3.44.0",
"next": "^10.0.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rescript-linaria": "0.1.0"
},
"scripts": {
"next:dev": "next",
"next:debug": "cross-env NODE_OPTIONS='--inspect' next",
"build": "bsb -clean-world -make-world && next build",
"now-build": "bsb -clean-world -make-world && next build",
"next:export": "next export",
"next:start": "next start -p $PORT",
"res:build": "bsb -make-world",
"res:clean": "bsb -clean-world",
"res:start": "bsb -make-world -w",
"test": "yarn res:build && jest",
"dev": "concurrently \"npm:res:start\" \"npm:next:dev\""
},
"devDependencies": {
"@babel/preset-env": "^7.12.17",
"@glennsl/bs-jest": "^0.6.0",
"@linaria/webpack-loader": "^3.0.0-beta.1",
"@next/bundle-analyzer": "^10.0.7",
"@tomvardasca/rescript-react-testing-library": "^0.9.2",
"babel-jest": "^26.6.3",
"bs-dom-testing-library": "^0.7.0",
"bs-jest-dom": "^4.1.1",
"bs-platform": "9.0.1",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"identity-obj-proxy": "^3.0.0",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^4.1.0",
"react-rules-of-hooks-ppx": "^0.8.1",
"stylelint": "13.11.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"webpack": "^5.23.0"
},
"resolutions": {
"webpack": "^5.22.0",
"**/react": "^17.0.1",
"**/react-dom": "^17.0.1"
},
"browserslist": [
"last 1 version, >1%"
]
}