-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "frontend-setup",
"version": "0.5.0",
"license": "MIT",
"description": "A basic project setup for creating (static) html templates. Filled with automated tasks and configuration options.",
"author": "Dylan Vens",
"scripts": {
"lint-fix": "eslint src/ --ext .ts,.tsx --fix",
"dev": "dev-scripts dev",
"build": "dev-scripts build",
"serve": "dev-scripts serve",
"storybook": "start-storybook -p 9000",
"storybook:build": "cross-env NODE_ENV=production build-storybook -o ./build/styleguide",
"build-storybook": "build-storybook"
},
"contributors": [
{
"name": "Dylan Vens",
"email": "dylan.vens@deptagency.com"
}
],
"engines": {
"node": ">=10.18.1",
"yarn": "^1.22.0"
},
"private": true,
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@dev-scripts/cli": "^0.3.2",
"@dev-scripts/eslint": "^0.2.1",
"@dev-scripts/webpack": "^0.4.7",
"@atomify/jsx-runtime": "^0.1.1",
"@storybook/addon-a11y": "^6.3.4",
"@storybook/addon-actions": "^6.3.3",
"@storybook/addon-essentials": "^6.3.3",
"@storybook/addon-links": "^6.3.3",
"@storybook/builder-webpack5": "^6.3.3",
"@storybook/html": "^6.3.3",
"@storybook/manager-webpack5": "^6.3.3",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/morgan": "^1.9.2",
"@types/serialize-javascript": "^5.0.0"
},
"dependencies": {
"@atomify/css": "^1.2.5",
"@atomify/hooks": "^1.3.5",
"@atomify/jsx": "^2.2.4",
"@atomify/kit": "^1.4.5",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"morgan": "^1.9.1",
"nodemon": "^2.0.9"
}
}