-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 948 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 948 Bytes
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
{
"name": "alwyn",
"version": "0.0.1",
"description": "Code Generator with TDD to bridge the coding gap.",
"main": "index.js",
"repository": "https://github.com/FraserTooth/alwyn.git",
"author": "Fraser Tooth <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@material-ui/core": "^4.6.0",
"@mrblenny/react-flow-chart": "^0.0.8",
"@types/node": "^12.12.7",
"@zeit/next-css": "^1.0.1",
"file-loader": "^4.2.0",
"next": "^9.1.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"typeface-roboto": "^0.0.75",
"typescript": "^3.7.2",
"url-loader": "^2.2.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"heroku-postbuild": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"prettier": "^1.19.1"
}
}