-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
106 lines (106 loc) · 3 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-stopwatch",
"version": "1.0.1",
"description": "A simple StopWatch SPA built with ReactJS and Express",
"main": "./dist/index.js",
"author": {
"name": "Fakiolas Marios",
"email": "m.fakiolas@hotmail.gr",
"url": "https://about.me/marios.fakiolas"
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon --debug server --ignore dist/ --exec babel-node",
"test": "cross-env NODE_ENV=test jest",
"lint": "eslint client --color",
"lint:fix": "esw client --fix --watch --color",
"clean": "npm prune && npm i",
"check": "npm-check",
"stylelint": "stylelint -c .stylelintrc client/**/*.scss"
},
"repository": {
"type": "git",
"url": "https://github.com/fakiolinho/react-stopwatch.git"
},
"keywords": [
"react",
"jest",
"express"
],
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"bem-cn": "^2.1.3",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"express": "^4.15.2",
"express-history-api-fallback": "^2.1.0",
"lodash": "^4.17.4",
"normalize.css": "^6.0.0",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"webpack": "^2.3.2"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.22.0",
"cross-env": "^3.2.4",
"css-loader": "^0.27.3",
"cssnano": "^3.10.0",
"enzyme": "^2.8.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.0.1",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"moxios": "^0.3.0",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"postcss-loader": "^1.3.3",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-order": "^0.4.2",
"stylelint-scss": "^1.4.3",
"webpack": "^2.3.2",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"moduleDirectories": [
"node_modules",
"client"
],
"bail": true,
"verbose": true,
"testRegex": "\\.(test|spec)\\.(js|jsx)$",
"collectCoverage": true
}
}