-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "turtles",
"version": "0.0.1",
"description": "a webapp for collecting turtle data",
"repository": "github:mdenson/turtles",
"private": true,
"scripts": {
"watch": "webpack --watch",
"start": "webpack-dev-server --open",
"build": "webpack",
"cypress:open": "cypress open"
},
"keywords": [],
"author": "Brock Denson",
"license": "ISC",
"dependencies": {
"babel-loader": "^8.0.5",
"pouchdb": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"cypress": "^3.1.5",
"html-webpack-plugin": "^3.2.0",
"mithril": "^1.1.6",
"style-loader": "^0.23.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
}
}