-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "smartappliances",
"version": "1.0.0",
"description": "The simple servise for home smart appliances",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node lib/bin",
"build": "babel server -d lib && cd react-ui/ && npm install && npm run build",
"build-f": "cd react-ui/ && npm run build",
"build-b": "babel server -d lib",
"test": "jest"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules"
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"express": "^4.17.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.0",
"mock-fs": "^4.13.0",
"prettier": "2.2.1",
"supertest": "^6.1.1"
},
"author": "Nikita Teremovskiy",
"license": "ISC"
}