-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "demoproject",
"version": "0.0.0",
"description": "Demo project",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "npm-run-all --parallel security test devserver open:index start-mockapi open:mockapi",
"devserver": "webpack-dev-server --inline --hot --config ./webpack.config.dev.js --mode development",
"test": "echo \"Test framework to be specified\"",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist test lint security",
"security": "nsp check",
"extra-security": "retire --severity medium",
"start-mockapi": "json-graphql-server src/api/db.js",
"open:index": "open http://localhost:8080",
"open:mockapi": "open http://localhost:3000"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"json-graphql-server": "^2.1.1",
"npm-run-all": "^4.1.2",
"nsp": "^3.2.1",
"open": "^6.0.0",
"react-hot-loader": "^4.0.1",
"retire": "^1.6.0",
"rimraf": "^2.6.2",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"semantic-ui-css": "2.2.12",
"semantic-ui-react": "^0.78.2"
}
}