-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "mynameisviii.com",
"author": "Raice Hannay <[email protected]>",
"repository": "https://github.com/voodoocreation/mynameisviii.com",
"license": "CC-BY-SA-4.0",
"version": "1.0.0",
"scripts": {
"dev": "cross-env PORT=5000 node --icu-data-dir=node_modules/full-icu next.server.js",
"build": "npm-run-all clean build:prod",
"build:prod": "next build",
"clean": "rimraf dist",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx}\"",
"start": "cross-env pm2 start start.config.json --env=production",
"stop": "cross-env pm2 kill",
"lint": "npm-run-all --parallel typecheck lint:ts lint:scss",
"lint:fix": "npm-run-all --parallel format typecheck lint:ts:fix lint:scss",
"lint:scss": "stylelint --config .stylelintrc \"src/**/*.+(css|scss)\"",
"lint:ts": "eslint \"./{types,src,pages}/**/*.ts?(x)\"",
"lint:ts:fix": "eslint \"./{types,src,pages}/**/*.ts?(x)\" --fix",
"test": "cross-env NODE_ENV=test TZ=Pacific/Auckland NODE_ICU_DATA=node_modules/full-icu jest --no-cache --config ./jest.config.js",
"test:all": "npm-run-all lint:fix test:coverage",
"test:coverage": "cross-env NODE_ENV=test TZ=Pacific/Auckland NODE_ICU_DATA=node_modules/full-icu jest --no-cache --coverage --config ./jest.config.js",
"typecheck": "tsc"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@formatjs/intl-pluralrules": "^1.5.4",
"@formatjs/intl-relativetimeformat": "^4.5.11",
"@formatjs/intl-unified-numberformat": "^3.3.0",
"@formatjs/intl-utils": "^2.2.1",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.4",
"@types/enzyme-to-json": "^1.5.3",
"@types/humps": "^1.1.2",
"@types/jest": "^25.1.4",
"@types/next-redux-saga": "^3.0.1",
"@types/react": "^16.9.31",
"@types/react-dom": "^16.9.6",
"@types/react-intl-redux": "^0.1.12",
"@types/react-redux": "^7.1.1",
"@types/redux-saga-tester": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@zeit/next-sass": "1.0.2-canary.2",
"accepts": "^1.3.7",
"autoprefixer": "^9.7.5",
"axios": "^0.19.2",
"babel-jest": "^25.2.4",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"classnames": "^2.2.6",
"cross-env": "^7.0.2",
"css-mqpacker": "^7.0.0",
"dayjs": "^1.8.23",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-voodoocreation": "^1.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prefer-arrow": "^1.1.7",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "^6.0.0",
"full-icu": "^1.3.0",
"glob": "^7.1.4",
"google-maps-react": "^2.0.2",
"humps": "^2.0.1",
"image-size-loader": "^0.7.0",
"jest": "^25.2.4",
"jest-google-maps-mock": "^1.0.2",
"jest-mocks": "^1.0.4",
"json-server": "^0.16.1",
"mockdate": "^2.0.4",
"next": "^9.3.4",
"next-redux-saga": "^4.0.2",
"next-redux-wrapper": "^5.0.0",
"next-routes": "^1.4.2",
"node-sass": "^6.0.1",
"normalize-scss": "^7.0.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pm2": "^4.2.1",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.2",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icon-base": "^2.1.2",
"react-icons": "^3.7.0",
"react-intl": "^4.3.1",
"react-intl-redux": "^2.1.1",
"react-redux": "^7.1.0",
"react-test-wrapper": "^2.0.3",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"redux-saga-tester": "^1.0.731",
"reselect": "^4.0.0",
"rimraf": "^3.0.0",
"scrollbar-size": "^2.1.0",
"service-worker-mock": "^2.0.4",
"serviceworker-webpack-plugin": "^1.0.1",
"striptags": "^3.1.1",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.16.0",
"svg-loader": "^0.0.2",
"ts-deepmerge": "^1.0.5",
"typescript": "^3.8.3",
"typescript-fsa": "^3.0.0-beta-2",
"typescript-fsa-reducers": "^1.2.1",
"webpack-filter-warnings-plugin": "^1.2.1"
}
}