-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 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
{
"name": "next-lingui",
"version": "0.0.1",
"scripts": {
"dev": "node server/index.js",
"build": "next build",
"start": "NODE_ENV=production node server/index.js",
"add-locale": "lingui add-locale",
"extract": "lingui extract",
"compile": "lingui compile"
},
"dependencies": {
"@lingui/core": "^2.7.4",
"@lingui/loader": "^2.7.4",
"@lingui/react": "^2.7.4",
"cookie-parser": "^1.4.4",
"esm": "^3.2.5",
"express": "^4.16.4",
"js-cookie": "^2.2.0",
"next": "^8.0.1",
"path-match": "^1.2.4",
"path-to-regexp": "^3.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"license": "MIT",
"devDependencies": {
"@lingui/macro": "^2.7.4",
"@types/express": "^4.16.1",
"@types/lingui__macro": "^2.7.2",
"@types/lingui__react": "^2.5.2",
"@types/next": "^8.0.1",
"@types/prop-types": "^15.5.9",
"babel-eslint": "^10.0.1",
"babel-plugin-macros": "^2.5.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.2.0",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.10",
"raw-loader": "^1.0.0"
}
}