-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·81 lines (81 loc) · 2.2 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
{
"name": "react-scroll-table",
"version": "0.5.0",
"description": "fix header scroll table",
"keywords": [
"react",
"scroll",
"fixed header",
"table"
],
"author": "Dickens Lian",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dickenslian/react-scroll-table.git"
},
"bugs": {
"url": "https://github.com/dickenslian/react-scroll-table/issues"
},
"homepage": "https://github.com/dickenslian/react-scroll-table",
"scripts": {
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "jshint",
"lint:sass": "stylelint ./src/**/*.scss",
"start": "webpack-dev-server",
"test": "jest --watch --coverage"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^3.3.1",
"jest": "^20.0.4",
"jshint": "^2.9.5",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/config/jest/jest.preprocessor.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "/__tests__/.*\\.(js|jsx)$",
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy",
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/fileMock.js"
},
"globals": {
"DEVELOPMENT": false,
"FAKE_SERVER": false
}
}
}