-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
117 lines (117 loc) · 3.28 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
107
108
109
110
111
112
113
114
115
116
117
{
"name": "igis",
"version": "0.1.0",
"private": true,
"dependencies": {
"autoprefixer": "9.4.7",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"babel-loader": "8.0.5",
"babel-preset-react-app": "^7.0.1",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"chalk": "2.4.2",
"css-loader": "2.1.0",
"diff": "^4.0.1",
"dotenv": "6.2.0",
"dotenv-expand": "4.2.0",
"eslint": "5.13.0",
"eslint-config-react-app": "^3.0.7",
"eslint-loader": "2.1.2",
"eslint-plugin-flowtype": "3.2.2",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "3.0.1",
"file-saver": "^2.0.0",
"fs-extra": "7.0.1",
"highlightjs": "^9.12.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"ipfs": "^0.34.4",
"ipfs-css": "^0.12.0",
"jest": "24.1.0",
"jszip": "^3.1.5",
"moment": "^2.24.0",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"promise": "8.0.2",
"raf": "3.4.1",
"react": "^16.8.1",
"react-click-outside": "github:tj/react-click-outside",
"react-dev-utils": "^7.0.3",
"react-dom": "^16.8.1",
"react-highlight": "^0.12.0",
"react-markdown": "^4.0.6",
"react-promise": "^2.1.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"style-loader": "^0.23.1",
"sw-precache-webpack-plugin": "0.11.5",
"tachyons-sass": "^4.9.5",
"url-loader": "1.1.2",
"webpack": "4.29.3",
"webpack-dev-server": "3.1.14",
"webpack-manifest-plugin": "2.0.4",
"whatwg-fetch": "3.0.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/styles/scss/ -o src/styles/css/",
"watch-css": "npm run build-css && node-sass-chokidar src/styles/scss/ -o src/styles/css/ --watch --recursive",
"start-js": "node scripts/start.js",
"start": "npm-run-all -p watch-css start-js",
"build-js": "node scripts/build.js",
"build": "npm-run-all build-css build-js",
"test": "node scripts/test.js --env=jsdom"
},
"devDependencies": {
"less-watch-compiler": "^1.13.0",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.5",
"sass-loader": "^7.1.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"mjs",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
}
}