-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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": "data-generator",
"version": "0.0.1",
"description": "Generates test data",
"main": "index.js",
"scripts": {
"start-development": "run-script-os",
"start-development:win32": "SET NODE_ENV=development&& node index.js",
"start-development:darwin:linux": "export NODE_ENV=development; node index.js",
"start-local": "run-script-os",
"start-local:win32": "SET NODE_ENV=local&& node index.js",
"start-local:darwin:linux": "export NODE_ENV=local; node index.js",
"start-standalone": "run-script-os",
"start-standalone:win32": "SET NODE_ENV=local&& node standalone.js",
"start-standalone:darwin:linux": "export NODE_ENV=local; node standalone.js",
"lint": "standardx",
"lint-fix": "standardx --fix"
},
"author": "",
"license": "ISC",
"eslintConfig": {
"rules": {
"indent": [
"error",
4
]
}
},
"dependencies": {
"async": "^2.6.2",
"axios": "^0.21.1",
"dotenv": "^6.2.0",
"fs-extra": "^7.0.1",
"joi": "13.7.0",
"node-localstorage": "^1.3.1",
"run-script-os": "^1.0.5",
"simple-node-logger": "^18.12.21",
"uuid": "^3.3.2"
},
"devDependencies": {
"standardx": "^3.0.1"
}
}