This repository has been archived by the owner on Jul 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 2.26 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
{
"name": "training-center-client",
"version": "1.0.0",
"description": "Client for the training-center platform",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --hot --history-api-fallback --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint **/**.js",
"test": "jest --coverage --config=jest.config.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": "git+https://github.com/training-center/plataforma.git",
"license": "MIT",
"private": true,
"dependencies": {
"linkstate": "^1.1.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.12",
"@storybook/addon-links": "^3.2.12",
"@storybook/react": "^3.2.12",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.0",
"json-schema-faker": "^0.4.6",
"prettier": "^1.7.4",
"raf": "^3.4.0",
"react-hot-loader": "next",
"react-test-renderer": "^16.0.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.3.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
}
}