-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.72 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
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
73
74
75
76
77
{
"name": "synthesis-javascript-starter-kit",
"version": "1.0.0",
"description": "A starter kit for javascript",
"main": "index.js",
"repository": "https://github.com/bogdaniel/Synthesis",
"author": "Bogdan Olteanu",
"license": "MIT",
"scripts": {
"prestart": "node build_scripts/development-server-start-message.js",
"start": "npm-run-all --parallel start:development:server lint:watch test:watch prestart:mock-api start:mock-api",
"start:development:server": "node build_scripts/development-server.js",
"start:production:server": "",
"security-check": "npm audit",
"localtunnel": "lt --port 3001",
"share:development": "npm-run-all --parallel start:development:server localtunnel",
"lint": "esw webpack.config.* src build_scripts --fix --color",
"lint:watch": "npm run lint -- --watch",
"test": "mocha --reporter progress build_scripts/test-config.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"generate-mock-data": "node build_scripts/generate-mock-data",
"prestart:mock-api": "npm run generate-mock-data",
"start:mock-api": "json-server --watch ./src/api/db.json --port 3001",
"clean:dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean:dist test lint",
"build": "node build_scripts/build-production.js",
"postbuild": "node build_scripts/production-server"
},
"dependencies": {
"numeral": "^2.0.6",
"postcss-loader": "^3.0.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-preset-airbnb": "^3.2.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-watch": "^4.0.2",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^13.2.0",
"json-schema-faker": "^0.5.0-rc9",
"json-server": "^0.14.2",
"less-loader": "^4.1.0",
"localtunnel": "^1.9.1",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^6.0.0",
"nock": "^10.0.6",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"open": "^0.0.5",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.5",
"webpack-dev-middleware": "^3.6.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-md5-hash": "^0.0.6"
}
}