This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.0.0-beta",
"@zeit/next-css": "^1.0.1",
"axios": "^0.18.1",
"babel-core": "^7.0.0-beta",
"babel-runtime": "^7.0.0-beta",
"express": "^4.16.4",
"moment": "^2.23.0",
"moment-timezone": "^0.5.23",
"next": "^7.0.2",
"next-cookies": "^1.0.4",
"next-i18next": "^0.19.0",
"next-images": "^1.0.4",
"next-nprogress": "^1.4.0",
"next-purgecss": "^3.0.0",
"qrcode.react": "^0.9.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-markdown": "^4.0.6",
"react-scripts": "2.1.3",
"react-text-truncate": "^0.13.1",
"compression": "^1.7.4"
},
"scripts": {
"next:dev": "next",
"next:build": "next build",
"postinstall": "yarn gencss",
"heroku-postbuild": "yarn next:build",
"next:start": "next start",
"gencss": "postcss ./components/core/tw.css -o ./components/core/tailwind.css",
"start:tw": "postcss ./components/core/tw.css -o ./components/core/tailwind.css -w",
"start": "NODE_ENV=production node server.js",
"build": "react-scripts build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eject": "react-scripts eject",
"go": "concurrently --kill-others \"yarn start:tw\" \"yarn next:dev\"",
"full": "concurrently --kill-others \"yarn start:tw\" \"yarn next:start\"",
"export": "yarn next:build | next export",
"start:prod": "concurrently --kill-others \"yarn start:tw\" \"node server.js\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-plugin-root-import": "^6.1.0",
"concurrently": "^4.1.0",
"cssnano": "^4.1.8",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"http-proxy-middleware": "^0.19.1",
"postcss-cli": "^6.1.1",
"postcss-easy-import": "^3.0.0",
"tailwindcss": "^0.7.3"
}
}