forked from webpapaya/compup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "kompott",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "docker-compose up -d && concurrently -n webpack,storybook 'webpack-dev-server --mode development' 'start-storybook'",
"lint": "eslint src",
"build": "webpack --mode production",
"build-storybook": "build-storybook"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"camelcase-keys-deep": "^0.1.0",
"datenkrake": "^0.0.3",
"decamelize": "^2.0.0",
"decamelize-keys-deep": "^0.1.1",
"jwt-decode": "^2.2.0",
"promise-frites": "^0.10.0",
"prop-types": "^15.6.2",
"ramda": "^0.26.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-memoize": "^2.3.1",
"redux-thunk": "^2.3.0"
},
"jest": {
"setupTestFrameworkScriptFile": "jest-enzyme",
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
}
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"@storybook/addon-actions": "^4.1.3",
"@storybook/addon-links": "^4.1.3",
"@storybook/addons": "^4.1.3",
"@storybook/react": "^4.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^4.1.0",
"css-loader": "^2.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.12.0",
"eslint-config-react-trigo": "^6.3.1",
"hamjest": "^3.2.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-environment-enzyme": "^7.0.1",
"jest-enzyme": "^7.0.1",
"react-test-renderer": "^16.6.3",
"storybook-react-router": "^1.0.2",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}