-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "ibrahim-bundle-phobia-server",
"version": "1.0.0",
"description": "custom bundle phobia implementation",
"main": "index.js",
"scripts": {
"server": "node index.js",
"client": "npm run start --prefix phobia-ui",
"test": "jest",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Ibrahim Jelliti <ibrahimjelliti.contact@gmail.com>",
"license": "MIT",
"dependencies": {
"@testing-library/react": "^10.2.1",
"axios": "^0.21.1",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"node-persist": "^3.1.0",
"react-test-renderer": "^16.13.1",
"request": "^2.88.2",
"rimraf": "^3.0.0",
"sanitize-filename": "^1.6.3",
"semver": "^6.3.0",
"shortid": "^2.2.15",
"terser-webpack-plugin": "^2.2.1",
"validate-npm-package-name": "^3.0.0",
"webpack": "^4.41.5",
"zlib": "^1.0.5"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"webpack-cli": "^3.3.10"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/phobia-ui/"
],
"watchPathIgnorePatterns": [
"tmp/",
"<rootDir>/node_modules/"
]
}
}