-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
{
"name": "url-shortner",
"version": "0.0.1",
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
"start": "next start -p 5000",
"test": "jest",
"lint": "next lint",
"do-setup-database": "node ./scripts setup-database",
"do-seed-database": "node ./scripts seed-database"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"knex": "^0.95.7",
"next": "^10.0.5",
"next-redux-wrapper": "^6.0.2",
"pg-promise": "^10.10.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.2",
"react-styled-flexboxgrid": "^3.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"redux-mock-store": "^1.5.4"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/",
"<rootDir>/src/pages/api/"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}