-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.89 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
{
"author": "Egor Sorokin",
"name": "tiny-react-nodejs-boilerplate",
"version": "1.0.0",
"description": "Tiny react nodejs boilerplate v1.0",
"scripts": {
"build-dev": "DEV_MODE=true webpack",
"build-prod": "webpack",
"start": "DEV_MODE=true webpack-dev-server --watch",
"lint": "eslint --config ./.eslintrc.js --ext .jsx --ext .js src/ || true",
"test": "jest --config=.jestrc.json --passWithNoTests"
},
"dependencies": {
"@atlaskit/section-message": "^4.1.1",
"@atlaskit/spinner": "^12.1.1",
"axios": "^0.19.0",
"core-js": "3.3.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.2",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"restify": "^8.4.0",
"restify-cors-middleware": "^1.1.1",
"restify-plugins": "^1.6.0",
"styled-components": "^3.2.6",
"webpack-dev-server": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.9"
}
}