-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.41 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
{
"name": "kune-ui",
"version": "0.0.1",
"description": "The official UI framework for Kune's ecosystem of web and mobile apps based on React.js",
"main": "server.js",
"repository": "https://github.com/KunePay/kune-ui.git",
"author": "Jean M. Lescure",
"license": "MIT",
"devDependencies": {
"@babel/polyfill": "7.0.0",
"@zeit/next-css": "1.0.1",
"axios": "0.18.0",
"babel-eslint": "8.2.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"body-parser": "1.18.3",
"cors": "2.8.4",
"dotenv": "6.0.0",
"express": "4.16.3",
"flow-bin": "0.79.1",
"mime": "2.3.1",
"next": "7.0.2",
"prism-themes": "1.0.1",
"prismjs": "1.15.0",
"react": "16.4.0",
"react-dom": "16.4.0",
"react-prism": "4.3.2",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-devtools-extension": "2.13.5",
"redux-thunk": "2.3.0",
"rimraf": "2.6.2",
"yes-https": "0.0.4"
},
"scripts": {
"dev": "node server.js",
"setup:dev": "cd lib/kune-ui-utils && yarn setup:dev && cd ../kune-ui-theme-default && yarn setup:dev && cd ../kune-ui-hocs && yarn setup:dev && cd ../kune-ui-components && yarn setup:dev && cd ../kune-ui-redux && yarn setup:dev && echo 💫 Complete setup:dev",
"build": "rimraf .next && next build",
"export": "next export",
"deploy": "./deploy.sh",
"start": "NODE_ENV=production node server.js",
"flow": "flow"
}
}