-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "frontend-starter",
"engines": {
"node": "14.15.4"
},
"scripts": {
"start": "parcel index.html",
"test": "jest",
"build": "parcel build index.html --public-url ./"
},
"dependencies": {
"@draft-js-plugins/editor": "^4.1.0",
"@draft-js-plugins/inline-toolbar": "^4.1.1",
"axios": "^0.21.1",
"bulma": "^0.9.1",
"draft-js": "^0.11.7",
"immutable": "^4.0.0-rc.12",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/react": "^11.2.3",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-css-modules-transform": "^4.2.0",
"node-sass": "^5.0.0",
"parcel": "^2.0.0-beta.1",
"react-test-renderer": "^17.0.1",
"sass": "^1.32.5"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.js$": "babel-jest",
".+\\.(css|scss)$": "jest-css-modules-transform"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css|jpg|png)$": "<rootDir>/testing/empty-module.js"
}
}
}