forked from noebs/checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 951 Bytes
/
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
{
"name": "noebs-web-portal",
"version": "4.0.0",
"private": true,
"scripts": {
"prestart": "postcss src/App/style/tailwind.css -o src/App/style/App.css",
"start": "react-scripts start",
"build": "npm run prestart && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"i18next": "^19.8.2",
"jsencrypt": "^3.0.0-rc.1",
"query-string": "^6.13.5",
"react": "latest",
"react-dom": "latest",
"react-i18next": "^11.7.3",
"react-scripts": "latest",
"uuid": "^3.3.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^9.0.0",
"postcss": "^8.1.7",
"postcss-cli": "^7.0.1",
"tailwindcss": "^2.0.2"
}
}