-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.26 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@snowball-tech/technical-interview",
"description": "Snowball technical test - Next.js application with Fractal design system",
"author": "Snowball Engineering Team <engineering@snowball.xyz>",
"contributors": [
"Clément PRÉVOT <clement@snowball.xyz> (https://github.com/clementprevot)"
],
"private": true,
"license": "UNLICENSED",
"keywords": [
"snowball",
"yarn",
"javascript",
"typescript",
"react",
"nextjs",
"eslint",
"prettier",
"lodash"
],
"homepage": "https://github.com/snowball-tech/technical-interview",
"repository": {
"type": "git",
"url": "git+https://github.com/snowball-tech/technical-interview.git"
},
"bugs": {
"url": "https://github.com/snowball-tech/technical-interview/issues"
},
"packageManager": "yarn@4.13.0",
"engines": {
"yarn": "^4.0.0",
"node": "^24.0.0"
},
"publishConfig": {
"access": "restricted"
},
"scripts": {
"allow-scripts": "node ./node_modules/@lavamoat/allow-scripts/src/cli.js --experimental-bins",
"dev": "next dev --port 3000 --hostname 0.0.0.0",
"build": "NODE_ENV=production next build",
"start": "next start",
"lint": "eslint --cache .",
"lint-fix": "eslint --cache --fix .",
"format": "prettier --ignore-unknown --ignore-path .gitignore --cache --check .",
"format-fix": "prettier --ignore-unknown --ignore-path .gitignore --cache --write .",
"quality": "yarn run lint & yarn run format & yarn run types-check",
"quality-fix": "yarn run lint-fix && yarn run format-fix && yarn run types-check",
"types-check": "tsc --noEmit",
"presetup": "yarn install && yarn run allow-scripts --experimental-bins run",
"setup": "yarn husky",
"update-deps": "yarn upgrade-interactive"
},
"dependencies": {
"@snowball-tech/design-tokens": "17.1.4",
"@snowball-tech/fractal": "24.3.0",
"@tooni/iconscout-unicons-react": "1.0.3",
"lodash": "4.18.1",
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"sharp": "0.34.5"
},
"devDependencies": {
"@csstools/postcss-cascade-layers": "6.0.0",
"@lavamoat/allow-scripts": "4.0.0",
"@lavamoat/preinstall-always-fail": "3.0.0",
"@snowball-tech/eslint-snowball-config": "2.1.0",
"@snowball-tech/prettier-config": "2.2.0",
"@types/lodash": "4.17.24",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@yarnpkg/types": "4.0.1",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"postcss": "8.5.8",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "16.1.1",
"postcss-logical": "9.0.0",
"postcss-preset-env": "11.2.0",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "3.4.19",
"typescript": "6.0.2"
},
"lavamoat": {
"allowBins": {
"eslint": "node_modules/eslint/bin/eslint.js",
"prettier": "node_modules/prettier/bin/prettier.cjs"
},
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"@snowball-tech/eslint-snowball-config>eslint-plugin-sql>multiline-ts": false,
"eslint-import-resolver-typescript>unrs-resolver": false
}
},
"resolutions": {
"prettier": "3.6.2"
}
}