-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "voter-registration",
"version": "1.0.0",
"description": "Canonical web client for the Michigan Elections API.",
"repository": "https://github.com/citizenlabsgr/elections-app",
"engines": {
"node": "10.14"
},
"main": "index.js",
"watch": {
"build-dev": {
"patterns": [
"src"
],
"extensions": "js,jsx,html,scss",
"runOnChangeOnly": false
},
"test": [
"src"
],
"extensions": "js,jsx,html,scss",
"runOnChangeOnly": false
},
"scripts": {
"test": "node -r @babel/register -r @babel/polyfill ./src/**/**/*.spec.jsx",
"watch-test": "npm-watch test",
"build": "webpack -p --config webpack.prod.js",
"watch": "npm-watch build-dev",
"build-dev": "webpack --config webpack.dev.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"npm-watch": "^0.6.0",
"riteway": "^6.1.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"bootstrap": "^4.3.1",
"react": "^16.11.0",
"react-dom": "^16.11.0"
}
}