-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.23 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
{
"name": "mony",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "sass styles/:app/styles && npx postcss app/styles/**/*.css --base app/styles --use autoprefixer -d app/styles --env production",
"dev": "concurrently \"npm run dev:css:sass\" \"npm run dev:css:autoprefixer\" \"cross-env NODE_ENV=development remix dev\"",
"dev:css:autoprefixer": "npx postcss --watch app/styles/**/*.css --base app/styles --use autoprefixer -d app/styles",
"dev:css:sass": "sass --watch styles/:app/styles",
"commit": "cz",
"storybook": "concurrently \"npm run css:sass\" \"start-storybook -p 6006\"",
"build-storybook": "build-storybook"
},
"dependencies": {
"@clerk/remix": "^1.1.3",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@remix-run/node": "^1.3.3",
"@remix-run/react": "^1.3.3",
"@remix-run/serve": "^1.3.3",
"@remix-run/vercel": "^1.6.8",
"@supabase/supabase-js": "^1.35.6",
"akahu": "^1.5.0",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"dayjs": "^1.11.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@remix-run/dev": "^1.3.3",
"@remix-run/eslint-config": "^1.3.3",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.11",
"babel-loader": "^8.2.4",
"concurrently": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.9.0",
"eslint-plugin-storybook": "^0.6.4",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"remix": "^1.4.0",
"sass": "^1.49.9",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}