-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.17 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
{
"name": "a-fathers-lullaby",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-proposal-dynamic-import": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@craco/craco": "^5.4.0",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"craco": "^0.0.3",
"dotenv": "^8.2.0",
"env2": "^2.2.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"google-maps-react": "^2.0.2",
"mic-recorder-to-mp3": "^2.2.1",
"node-sass": "^4.13.0",
"react": "^16.8.6",
"react-audio-player": "^0.11.1",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.15",
"react-router-dom": "^5.1.2",
"react-scripts": "3.0.1",
"recompose": "^0.30.0",
"semantic-ui-react": "^0.88.1",
"serialize-javascript": "^2.1.2",
"snazzy": "^8.0.0",
"travis": "^0.1.1",
"wavesurfer.js": "^3.2.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"ci": "npm run lint && npm test",
"cypress": "cypress open",
"cypress:headless": "./test.sh"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://thoughtworksarts.github.io/a-fathers-lullaby",
"devDependencies": {
"cypress": "^3.6.1",
"enzyme-shallow-until": "^1.0.1",
"enzyme-to-json": "^3.4.3",
"react-test-renderer": "^16.11.0",
"standard": "^14.1.0"
},
"babel": {
"presets": [
"react-app"
]
},
"standard": {
"ignore": [
"public/**/*.js"
],
"env": [
"browser",
"mocha"
],
"globals": [
"cy",
"Cypress",
"expect",
"assert",
"jest"
],
"parser": "babel-eslint"
},
"cracoConfig": "config/craco.config.js",
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}