-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
69
70
71
72
73
74
75
76
{
"name": "tail",
"version": "1.0.0",
"description": "Tailwind sandbox",
"main": "index.js",
"author": "Jimmy Sanford",
"license": "MIT",
"private": true,
"scripts": {
"build:dev": "NODE_ENV=development nodemon server/build.js",
"build:prod": "NODE_ENV=production nodemon server/build.js",
"clean": "rimraf dist",
"format": "prettier --write '@(server|src|theme)/**/*.@(css|js|jsx)' '*.js'",
"serve:dev": "NODE_ENV=development nodemon server/server.js",
"serve:prod": "NODE_ENV=production nodemon server/server.js",
"start": "concurrently \"yarn build:dev\" \"yarn serve:dev\""
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"compression-webpack-plugin": "^7.1.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.0.1",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.2.4",
"postcss-loader": "^5.0.0",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"tailwindcss": "^2.1.1",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-stats-plugin": "^1.0.3"
},
"dependencies": {
"@apollo/client": "^3.4.1",
"@tailwindcss/aspect-ratio": "^0.2.1",
"compression": "1.7.4",
"concurrently": "^6.2.0",
"cross-fetch": "^3.1.4",
"express": "4.17.1",
"graphql": "^15.5.1",
"history": "^5.0.1",
"nodemon": "^2.0.12",
"react": "^18.0.0-alpha-3e8c86c1c-20210630",
"react-dom": "^18.0.0-alpha-3e8c86c1c-20210630",
"react-helmet-async": "^1.0.9",
"react-router-dom": "^6.0.0-beta.0",
"rimraf": "^3.0.2"
},
"sideEffects": [
"*.css"
],
"nodemonConfig": {
"ext": "css,js,jsx",
"ignore": [
"dist/*"
]
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"quoteProps": "consistent",
"semi": false,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true
}
}