-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.4 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.4 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
{
"name": "testframeworkui",
"version": "1.0.0",
"description": "React UI for Test Framework UI",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -d && copy /Y src\\app\\index.html dist\\index.html && webpack-dev-server --hot --inline --colors --progress --content-base src/",
"build-prod": "webpack -p && copy /Y src\\app\\index.html dist\\index.html",
"lint": "esw webpack.config.* src tools --color",
"lint:watch": "npm run lint -- --watch",
"start": "npm-run-all --parallel build lint:watch"
},
"author": "M West",
"license": "ISC",
"dependencies": {
"node-latest-version": "^1.0.16",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-transition-group": "^15.6.0",
"react-dom": "^15.6.1",
"reactstrap": "^4.8.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.1.0",
"eslint-watch": "^3.1.2",
"locate-path": "^2.0.0",
"loglevel": "^1.4.1",
"npm-run-all": "^4.0.2",
"prop-types": "^15.5.10",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"window-size": "^1.1.0",
"wrap-ansi": "^3.0.1"
}
}