-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "nextjs-socialmedia",
"version": "1.0.0",
"description": "socialmedia-app-nextjs",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint \"./commons/**\"",
"dev": "node server.js -p $PORT",
"build": "next build",
"start": "NODE_ENV=production node server.js -p $PORT",
"cypress": "./node_modules/.bin/cypress open",
"prod": "npm-run-all build start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsatria/nextjs-socialmedia.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bsatria/nextjs-socialmedia/issues"
},
"homepage": "https://github.com/bsatria/nextjs-socialmedia#readme",
"dependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"express": "^4.17.1",
"identity-obj-proxy": "^3.0.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^8.1.0",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.87.2",
"styled-components": "^4.3.2",
"underscore": "^1.13.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.2",
"cross-env": "^5.2.0",
"cypress": "^3.3.1",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"jest-dom": "^3.5.0",
"msw": "^0.29.0",
"next-page-tester": "^0.25.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2"
}
}