-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "cmssw-dashboard",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"axios": "0.28.0",
"axios-cache-plugin": "0.1.0",
"bootstrap": "3.4.1",
"flux": "3.1.3",
"install": "0.10.1",
"npm": "6.14.6",
"query-string": "5.1.0",
"react": "16.2.0",
"react-bootstrap": "0.31.3",
"react-copy-to-clipboard": "5.0.1",
"react-dom": "16.0.1",
"react-json-pretty": "1.7.4",
"react-router": "4.2.0",
"react-router-bootstrap": "0.24.4",
"react-router-dom": "4.2.2",
"react-scripts": "1.0.14",
"react-table": "6.8.0",
"underscore": "1.12.1",
"uuid": "3.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"_comment": "Can not configure jest unless project is 'ejected'. Witthout this configuration JEST test will fail since some node modules are not corectly transpiled",
"_comment_code": {
"jest": {
"verbose": true,
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"transformIgnorePatterns": [
"node_modules/(?!iggy-common)"
]
}
}
}