-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "stickynotestab",
"version": "1.0.1",
"description": "",
"main": "main.js",
"keywords": [],
"author": "mustafa",
"license": "MIT",
"scripts": {
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack --hide-modules --progress --mode production",
"dev:build": "cross-env NODE_ENV=development webpack -d --mode development",
"dev": "cross-env webpack-dev-server --colors --inline --progress --mode development",
"watch": "cross-env NODE_ENV=development webpack --watch --mode development",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:update": "cross-env NODE_ENV=test jest -u",
"test:coverage": "cross-env NODE_ENV=test jest --coverage"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"just-debounce-it": "^1.0.1",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.4.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.4",
"jest-localstorage-mock": "^2.2.0",
"open-browser-webpack-plugin": "0.0.5",
"prettier": "^1.12.1",
"react-hot-loader": "^3.1.3",
"react-test-renderer": "^16.4.0",
"react-testing-library": "^4.1.0",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
}
}