-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.95 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
{
"name": "react-app-dev-env",
"version": "1.0.0",
"description": "Boilerplate for a skeleton react app",
"main": "index.js",
"scripts": {
"start": "npm run start-all -s",
"start-all": "npm-run-all --parallel lint:watch test:watch start:dev",
"start:dev": "babel-node scripts/srcServer.js -s",
"build": "webpack",
"test": "mocha --require @babel/polyfill --require @babel/register ./src/**/*.spec.js",
"test:watch": "npm run test -- --watch",
"lint": "esw src webpack.config.*.js scripts --color",
"lint:watch": "npm run lint -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jampies/react-app-dev-env.git"
},
"keywords": [
"starter-kit",
"react",
"boilerplate",
"starter",
"initialiser",
"skeleton"
],
"author": "Murray le Roux",
"license": "MIT",
"bugs": {
"url": "https://github.com/jampies/react-app-dev-env/issues"
},
"homepage": "https://github.com/jampies/react-app-dev-env#readme",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"assert": "^2.0.0",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.15.1",
"eslint-watch": "^6.0.1",
"express": "^4.17.1",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^15.1.1",
"json-loader": "^0.5.7",
"mocha": "^6.2.1",
"npm-run-all": "^4.1.5",
"open": "^6.4.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"semistandard": "^14.2.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-middleware": "^3.7.2"
}
}