This repository has been archived by the owner on Aug 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.37 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
{
"name": "burp",
"version": "1.0.0",
"description": "Boilerplate Universal React PWA",
"repository": {
"type": "git",
"url": "git+https://github.com/emortlock/nextjs-boilerplate.git"
},
"main": "./dist",
"scripts": {
"build": "cross-env NODE_ENV=production next build",
"build:analyze": "cross-env BUNDLE_ANALYZE=both npm run build",
"export": "cross-env NODE_ENV=production next export dist",
"start": "cross-env NODE_ENV=production node ./src/server",
"start:dev": "cross-env NODE_ENV=development nodemon ./src/server",
"test": "cross-env LOGGER_ENABLED=false BABEL_ENV=test jest",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"lint:fix": "npm run lint -- --fix"
},
"engines": {
"node": "^8.11.3",
"npm": ">=5.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"setupFiles": [
"./build/jest/setup/enzyme.js"
],
"moduleNameMapper": {
"^.+\\.(svg)$": "<rootDir>/build/jest/mocks/svg.jsx",
"^.+\\.(s?css)$": "<rootDir>/build/jest/mocks/file.js",
"^.+\\.(jpg|jpeg|png|gif|bmp)$": "<rootDir>/build/jest/mocks/file.js",
"^.+\\.(eot|otf|webp|ttf|woff|woff2)$": "<rootDir>/build/jest/mocks/file.js"
},
"resetModules": true,
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testEnvironment": "node",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@zeit/next-bundle-analyzer": "^0.1.1",
"@zeit/next-css": "^0.2.0",
"autoprefixer": "^9.0.1",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"classnames": "^2.2.5",
"cross-env": "^5.0.1",
"express": "^4.16.3",
"glob-all": "^3.1.0",
"helmet": "^3.13.0",
"joi": "^13.4.0",
"json-loader": "^0.5.7",
"mime-types": "^2.1.19",
"next": "^6.1.1",
"object-assign": "^4.1.1",
"postcss-clean": "^1.1.0",
"postcss-color-function": "^4.0.1",
"postcss-import": "^11.1.0",
"postcss-nested": "^3.0.0",
"postcss-scss": "^2.0.0",
"prom-client": "^11.1.1",
"promise": "^8.0.1",
"prop-types": "^15.6.2",
"purgecss-webpack-plugin": "^1.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-svg-loader": "^2.1.0",
"recompose": "0.29.0",
"sw-precache-webpack-plugin": "^0.11.5",
"tailwindcss": "^0.6.4",
"whatwg-fetch": "^2.0.4",
"winston": "^3.0.0",
"winston-transport": "^4.2.0"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"enzyme": "^3.5.1",
"enzyme-adapter-react-16": "^1.4.0",
"enzyme-to-json": "^3.2.2",
"eslint": "4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.4.1",
"nodemon": "^1.18.3",
"prettier": "^1.13.7"
},
"author": "Ed Mortlock",
"license": "MIT"
}