-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.17 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.17 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
54
55
56
57
58
59
60
{
"private": true,
"name": "uiengine-sample-react",
"description": "UIengine sample project using React",
"author": "Dennis Reimann <mail@dennisreimann.de> (https://dennisreimann.de)",
"version": "2.0.0",
"license": "MIT",
"homepage": "https://github.com/dennisreimann/uiengine",
"bugs": "https://github.com/dennisreimann/uiengine-sample-react",
"repository": "dennisreimann/uiengine-sample-react",
"main": "pages/index.js",
"scripts": {
"start": "rimraf dist && npm-run-all --parallel start:*",
"start:next": "node server.js",
"start:uiengine": "sleep 5 && uiengine build -s -w",
"build": "rimraf dist out && npm-run-all build:*",
"build:next": "next build && next export && cp -r out/_next/static/* out/ && cp out/css/styles* out/css/styles.chunk.css",
"build:uiengine": "uiengine build && cp -r dist/design-system out",
"production": "HOST=https://uiengine-sample-react.uix.space npm run build"
},
"keywords": [
"uiengine",
"nextjs",
"react"
],
"dependencies": {
"@zeit/next-css": "^1.0.1",
"classnames": "^2.2.6",
"express": "^4.17.1",
"isomorphic-unfetch": "^3.1.0",
"next": "^9.5.5",
"node-fetch": ">=2.6.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"@uiengine/adapter-html": "^3.1.4",
"@uiengine/adapter-react": "^2.4.0",
"@uiengine/core": "^3.1.4",
"babel-plugin-css-modules-transform": "^1.6.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.1",
"rimraf": "^3.0.2"
},
"snyk": false
}