forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 856 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
{
"name": "meteor-realworld-example-app",
"version": "1.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/eslint-parser": "^7.24.8",
"babel-eslint": "^10.1.0",
"eslint": "^9.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-meteor": "^7.3.0"
},
"dependencies": {
"@babel/runtime": "^7.24.8",
"@types/meteor": "^2.9.8",
"bcrypt": "^5.1.1",
"jquery": "^3.7.1",
"marked": "^13.0.2",
"simpl-schema": "^3.4.6",
"slug": "^9.1.0"
},
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy,web.cordova",
"start-full": "meteor run",
"build": "meteor build",
"test": "echo TODO meteor test ...",
"lint": "eslint . --ext .js",
"deploy": "meteor deploy --mongo --free realworld"
}
}