forked from rpp30-boc-stuxnet/stream-hopper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 KB
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": "stream-hopper",
"jest": {
"testPathIgnorePatterns": [
"client"
]
},
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"postinstall": "cd client && npm install",
"react-test": "cd client && npm test",
"back-test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules npx jest --coverage --runInBand",
"start": "node server/index.js",
"build": "cd client && npm run build",
"front-dev": "cd client && npm start",
"back-dev": "nodemon server/index.js",
"https-front-dev": "cd client && npm run httpsStart",
"fullstack-dev": "concurrently -n 'react compiler,node backend' -c 'bgBlue.bold,bgGreen.bold' 'cd client && npm start' 'npm run back-dev'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp30-boc-stuxnet/stream-hopper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp30-boc-stuxnet/stream-hopper/issues"
},
"homepage": "https://github.com/rpp30-boc-stuxnet/stream-hopper#readme",
"dependencies": {
"axios": "^0.24.0",
"babel-jest": "^27.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"history": "^5.2.0",
"mongoose": "^6.1.2",
"nodemon": "^2.0.15",
"pm2": "^5.1.2",
"react-rating-stars-component": "^2.2.0",
"react-scripts": "^5.0.0",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2"
},
"devDependencies": {
"babel-plugin-styled-components": "^2.0.2",
"concurrently": "^6.4.0",
"tailwindcss": "^3.0.9"
}
}