-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "bikeshare",
"version": "1.0.0",
"description": "Displays info on bicycle stations",
"main": "server.js",
"scripts": {
"dev": "node server.js",
"prod": "NODE_ENV=production node server.js",
"test": "jest --verbose",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "eslint -c .eslintrc pages server.js __fixtures__, __mocks__, __tests__",
"lint-fix": "eslint -c .eslintrc --fix pages server.js"
},
"author": "Per Halvor Tryggeseth",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"next": "^8.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"save-dev": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.8.6"
}
}