-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 971 Bytes
/
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
{
"name": "jamatalk",
"description": "Jamatalk is a programming language inspired by Smalltalk, Lisp, Elixir, & Haskell",
"version": "0.1.0",
"license": "MIT",
"author": "Jason Cady <[email protected]>",
"repository": "https://github.com/Jamamuuga/jamatalk-js.git",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next --hostname=[::1] --dev",
"beautify": "eslint --fix .",
"lint": "eslint .",
"start": "next start",
"build": "next build"
},
"dependencies": {
"express": "^4.16.2",
"next": "^5.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-airbnb": "16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-es-beautifier": "^1.0.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0"
}
}