-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "fluentcards-grammar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --inline --hot --progress --colors",
"test": "eslint ./src",
"comp": "./bin/create-component.sh",
"prod": "npm test && NODE_ENV=production webpack -p",
"deploy": "./bin/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katspaugh/fluentcards.git"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-react": "^7.10.4",
"@types/classnames": "*",
"@types/prop-types": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@types/react-router": "*",
"@types/react-router-dom": "*",
"@types/rx-lite": "*",
"@types/webaudioapi": "*",
"@types/webspeechapi": "*",
"@types/whatwg-fetch": "*",
"babel": "^6.23.0",
"babel-core": "*",
"babel-eslint": "*",
"babel-loader": "*",
"css-loader": "*",
"eslint": "*",
"eslint-plugin-react": "*",
"style-loader": "*",
"typings-for-css-modules-loader": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*"
},
"dependencies": {
"classnames": "*",
"react": "*",
"react-dom": "*",
"react-router-dom": "*",
"rx-lite": "^4.0.8"
}
}