-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.56 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
{
"name": "virtual-mind-code-challenge",
"description": "A simple code challenge about administration of a list of articles",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"test": "NODE_ENV=test ts-jest",
"test:watch": "NODE_ENV=test jest --watch",
"build": "concurrently \"npm run build:client\" \"npm run build:server\"",
"build:client": "next build src/client",
"build:server": "tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server -p $PORT",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@testing-library/react": "^8.0.1",
"@types/mongoose-paginate-v2": "^1.0.2",
"@zeit/eslint-config-node": "^0.3.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"enzyme": "^3.10.0",
"express": "^4.17.1",
"immutable": "^4.0.0-rc.12",
"isomorphic-fetch": "^2.2.1",
"jest-environment-node": "^24.8.0",
"lodash": "^4.17.11",
"material-design-lite": "^1.3.0",
"mongoose": "5.5.6",
"mongoose-crudify": "^0.2.0",
"mongoose-paginate-v2": "^1.3.0",
"morgan": "^1.9.1",
"next": "^8.1.0",
"next-compose-plugins": "^2.2.0",
"next-redux-wrapper": "^3.0.0-alpha.3",
"node-sass": "^4.12.0",
"querystring": "^0.2.0",
"react": "^16.8.6",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"request": "^2.88.0",
"spotify-web-api-node": "^4.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.13",
"@types/mongoose": "5.5.6",
"@types/morgan": "^1.7.35",
"@types/next": "^8.0.5",
"@types/node": "^12.0.7",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.1",
"@types/spotify-api": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"concurrently": "^4.1.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"jest-dom": "^3.5.0",
"jsdom": "^15.1.1",
"lint-staged": ">=8",
"mongodb-memory-server": "^5.1.4",
"mutationobserver-shim": "^0.3.3",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2",
"pretty-quick": "^1.11.0",
"react-test-renderer": "^16.8.6",
"sinon": "^7.3.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "3.4.5"
}
}