-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.82 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
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
{
"name": "budogram",
"private": true,
"dependencies": {
"@rails/webpacker": "3.5",
"@types/actioncable": "^0.0.2",
"@types/aos": "^3.0.0",
"@types/facebook-js-sdk": "^2.8.6",
"@types/googlemaps": "^3.30.16",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-lazyload": "^2.3.1",
"@types/react-select": "^2.0.4",
"@types/react-slick": "^0.23.2",
"aos": "^3.0.0-beta.6",
"axios": "^0.18.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-react": "^6.24.1",
"foundation-sites": "^6.4.3",
"i18n-js": "^3.1.0",
"ignore-loader": "^0.1.2",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-dropzone": "^5.1.0",
"react-lazyload": "^2.3.0",
"react-places-autocomplete": "^7.2.0",
"react-select": "^2.1.0",
"react-slick": "^0.23.1",
"react_ujs": "^2.4.4",
"resolve-url-loader": "^2.3.0",
"slick-carousel": "^1.8.1",
"stylelint": "^9.3.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.3",
"ts-loader": "3.5.0",
"tslint-microsoft-contrib": "^5.0.3",
"tslint-react": "^3.6.0",
"typescript": "^2.9.2",
"window": "^4.2.5"
},
"devDependencies": {
"@types/enzyme": "^3.1.5",
"@types/jest": "^23.1.4",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"jest": "^23.3.0",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"webpack-dev-server": "2.11.2"
},
"scripts": {
"test": "node_modules/.bin/jest",
"test-watch": "node_modules/.bin/jest --watch",
"lint:css": "node_modules/.bin/stylelint '**/*.scss'",
"lint:css:fix": "node_modules/.bin/stylelint \"./app/javascript/**/*.scss\" --fix",
"lint:ts": "node_modules/.bin/tslint -c ./tslint.json -p ./tsconfig.json -t codeFrame -e node_modules"
},
"pre-commit": [
"lint:css",
"lint:ts"
],
"jest": {
"verbose": true,
"setupFiles": [
"./spec/javascript/jest-config.js"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleDirectories": [
"app/javascript/components",
"app/javascript",
"node_modules"
],
"roots": [
"spec/javascript"
],
"collectCoverage": true,
"coverageReporters": [
"text",
"text-summary",
"html"
],
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/spec/javascript/style-mock.js",
"\\.(png)$": "<rootDir>/spec/javascript/style-mock.js",
"\\.(jpg)$": "<rootDir>/spec/javascript/style-mock.js",
"\\.(svg)$": "<rootDir>/spec/javascript/style-mock.js"
}
}
}