-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 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
54
55
56
57
58
59
60
{
"name": "react-message-board",
"version": "0.2.2",
"private": false,
"description": "Frontend Coding Challenge - Design and build a webpage to work as a message board",
"repository": {
"type": "git",
"url": "git+https://github.com/TimAstier/react-message-board"
},
"author": "Timothée Astier",
"license": "MIT",
"bugs": {
"url": "https://github.com/TimAstier/react-message-board/issues"
},
"homepage": "https://github.com/TimAstier/react-message-board#readme",
"dependencies": {
"axios": "^0.18.0",
"immutable": "^3.8.2",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"styled-components": "^3.4.5"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-centered": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^3.4.10",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.1.0",
"json-server": "^0.14.0",
"lodash": "^4.17.10",
"react-scripts": "1.1.5",
"redux-devtools-extension": "^2.13.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint --ext .js --ext .jsx src",
"lint:watch": "watch 'npm run lint'",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"mock-api": "json-server ./src/db.json"
}
}