-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.16 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
68
{
"name": "ashby-www",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "PORT=3010 next-remote-watch ./content ./meta ./config.json",
"build": "next build",
"prebuild": "node scripts/update_config_preview_app.js",
"start": "next start",
"lint-style": "stylelint --config '.stylelintrc.yml'",
"lint-styles": "yarn lint-style -- '**/*.scss' '**/*.css'",
"lint-ts": "eslint -c .eslintrc.js 'src/**/*.ts' 'src/**/*.tsx'",
"lint": "yarn lint-styles && yarn lint-ts",
"export": "yarn lint && yarn build && next export -o ./dist",
"test": "jest"
},
"dependencies": {
"@artsy/fresnel": "^3.5.0",
"@radix-ui/react-dialog": "^0.1.7",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-navigation-menu": "^0.1.2",
"@stitches/react": "^1.2.8",
"@svgr/webpack": "^5.5.0",
"@types/js-yaml": "^4.0.0",
"framer-motion": "4.1.17",
"gray-matter": "^4.0.2",
"gsap": "^3.10.4",
"html-loader": "^4.2.0",
"js-yaml": "^4.0.0",
"just-camel-case": "^6.1.1",
"next": "^12.1.6",
"next-remote-watch": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gsap": "^3.2.1",
"react-merge-refs": "^2.0.1",
"react-parallax-tilt": "^1.7.63",
"sanitize.css": "^12.0.1",
"sass": "^1.34.1"
},
"devDependencies": {
"@types/gsap": "^3.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-rdjson": "^1.0.5",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.1.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unused-imports": "^1.1.1",
"jest": "^26.6.3",
"prettier": "^2.3.1",
"stylelint": "^13.13.1",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"ts-jest": "^26.5.4",
"ts-prune": "^0.10.3",
"typescript": "^4.2.4",
"yaml-loader": "^0.6.0"
}
}