-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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
{
"name": "todo-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "3",
"eslint-plugin-typescript": "^0.10.0",
"html-webpack-plugin": "^3.0.6",
"materialize": "^1.0.0",
"mdbreact": "^4.2.0",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1",
"ts-node": "^5.0.1",
"typescript-eslint-parser": "^14.0.0"
},
"scripts": {
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=scripts/webpack.config.js",
"dev": "webpack-dev-server --inline --progress --config scripts/webpack.config.js",
"start": "npm run dev",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src test/unit test/e2e/specs",
"build": "node build/build.js"
},
"devDependencies": {
"@types/react": "^16.0.40",
"@types/react-bootstrap": "^0.32.6",
"@types/react-dom": "^16.0.4",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.18.2",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"mocha": "^5.0.4",
"sass-loader": "^6.0.7",
"ts-loader": "3.5.0",
"typescript": "^2.7.2",
"webpage": "^0.3.0"
}
}