-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.48 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.48 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dev-environment",
"version": "1.0.0",
"description": "JavaScript development environment :bowtie:",
"main": "index.js",
"scripts": {
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel security-check open:src lint:watch test:watch start-mockapi",
"open:src": "babel-node buildScripts/srcServer.js",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"security-check": "nsp check",
"localtunnel": "lt --port 3000 --subdomain raghib",
"share": "npm-run-all --parallel open:src localtunnel",
"test": "mocha --reporter progress buildScripts/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"generate-mock-data": "babel-node buildScripts/generateMockData",
"prestart-mockapi": "npm run generate-mock-data",
"start-mockapi": "json-server --watch src/api/db.json --port 3001",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist test lint",
"build": "babel-node buildScripts/build.js",
"postbuild": "babel-node buildScripts/distServer.js"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "8.2.5",
"babel-preset-latest": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.3.6",
"chalk": "5.0.1",
"cheerio": "1.0.0-rc.11",
"compression": "1.6.2",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-watch": "8.0.0",
"eslint": "8.16.0",
"express": "4.18.1",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": "5.5.0",
"jsdom": "19.0.0",
"json-schema-faker": "0.5.0-rcv.42",
"json-server": "0.17.0",
"localtunnel": "2.0.2",
"mocha": "10.0.0",
"nock": "13.2.4",
"npm-run-all": "4.1.5",
"nsp": "3.2.1",
"numeral": "2.0.6",
"open": "8.4.0",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"webpack-dev-middleware": "5.3.3",
"webpack-hot-middleware": "2.25.1",
"webpack-md5-hash": "0.0.6",
"webpack": "5.73.0",
"whatwg-fetch": "3.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ragmha/dev-environment.git"
},
"keywords": [],
"author": "Raghib Hasan <raghibmidhat@gmail.com> (http://raghibm.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ragmha/dev-environment/issues"
},
"homepage": "https://github.com/ragmha/dev-environment#readme"
}