-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "ominidi-pwa",
"version": "1.0.0",
"description": "Omini.org progressive web application",
"main": "index.js",
"repository": "[email protected]:ominidi/ominidi.org.git",
"scripts": {
"check-dep": "npm-check -u",
"lint": "eslint . --ext js,jsx",
"test": "jest",
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production HOST=0.0.0.0 PORT=$PORT node server.js"
},
"keywords": [
"ominidi"
],
"engines": {
"node": "12.13.0"
},
"author": "Gabriele D'Arrigo <[email protected]>",
"license": "MIT",
"dependencies": {
"@zeit/next-sass": "1.0.1",
"breakpoint-sass": "2.7.1",
"express": "4.17.1",
"js-yaml-loader": "1.2.2",
"next": "10.0.4",
"next-compose-plugins": "2.2.1",
"node-sass": "5.0.0",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint": "7.16.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"jest": "26.6.3",
"npm-check": "5.9.2",
"react-test-renderer": "17.0.1"
}
}