-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
74 lines (74 loc) · 2.45 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
{
"name": "production-ready-webapp-boilerplate",
"version": "1.0.0",
"description": "Production ready webapp boilerplate",
"main": "src/server/index.js",
"author": "Nguyen Hao <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development node src/server/index.js",
"build": "next build",
"start": "NODE_ENV=production node src/server/index.js",
"analyze": "ANALYZE=1 next build",
"storybook": "start-storybook -s ./public -p 9090",
"build-storybook": "build-storybook -c .storybook -s ./public -o built-storybook",
"storybook-production": "node .storybook/server.js",
"vr-test:chrome": "wdio run ./wdio/chrome.conf.js --spec",
"vr-test:chrome:sp": "wdio run ./wdio/smartphone.chrome.conf.js --spec",
"vr-test": "./.scripts/vr-test.sh",
"lint": "eslint 'src/**/*.js?(x)'",
"stylelint": "stylelint src/**/*.less"
},
"dependencies": {
"@storybook/react": "^6.1.18",
"@zeit/next-less": "^1.0.1",
"axios": "^0.21.1",
"axios-cache-adapter": "^2.5.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.3",
"less": "^3.12.2",
"moment-timezone": "^0.5.31",
"next": "^10.0.7",
"next-pwa": "2.1.2",
"next-redux-wrapper": "^6.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@wdio/cli": "^7.0.5",
"@wdio/local-runner": "^7.0.5",
"@wdio/mocha-framework": "^7.0.4",
"@wdio/spec-reporter": "^7.0.4",
"@wdio/sync": "^7.0.5",
"all-contributors-cli": "^6.17.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chromedriver": "^84.0.1",
"css-modules-require-hook": "^4.2.3",
"eslint": "^7.6.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"ip": "^1.1.5",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"wdio-chromedriver-service": "^6.0.4",
"wdio-image-comparison-service": "^2.0.0",
"webdriverio": "^7.0.5"
}
}