-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "utilitiesforme",
"version": "1.0.0",
"description": "The web frontend end for utilitiesfor.me",
"scripts": {
"test-javascript": "jest",
"format-javascript": "standard --fix",
"wp-start": "webpack serve",
"wp-watch": "webpack --watch",
"wp-build": "NODE_ENV=production webpack",
"wp-build-dev": "webpack",
"compile-styles": "postcss utilities_for_me/web_app/client/react/index.css -o utilities_for_me/web_app/static/index-bundle.css"
},
"default": "utilities_for_me/web_app/static/index-bundle.js",
"keywords": [
"web",
"react",
"app",
"utilitiesforme"
],
"author": "Matthew Cale",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@fullhuman/postcss-purgecss": "^4.0.3",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"cssnano": "^5.0.2",
"jest": "^26.6.3",
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1",
"postcss-preset-env": "^6.7.0",
"standard": "^16.0.3",
"tailwindcss": "^2.1.2",
"mini-css-extract-plugin": "^1.6.0",
"postcss-loader": "^5.3.0",
"sass": "^1.32.13",
"sass-loader": "^11.1.1",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"js-beautify": "^1.13.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"standard": {
"globals": [
"test",
"expect"
]
}
}