karinayuen commited on
Commit
da43944
·
verified ·
1 Parent(s): 1af3909

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +38 -0
package.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "constructive-alignment",
3
+ "version": "1.0.0",
4
+ "description": "Constructive Alignment Generator",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "start": "react-scripts start",
8
+ "build": "react-scripts build",
9
+ "test": "react-scripts test",
10
+ "eject": "react-scripts eject"
11
+ },
12
+ "dependencies": {
13
+ "react": "^17.0.2",
14
+ "react-dom": "^17.0.2",
15
+ "react-scripts": "4.0.3"
16
+ },
17
+ "devDependencies": {
18
+ "typescript": "^4.1.2"
19
+ },
20
+ "eslintConfig": {
21
+ "extends": [
22
+ "react-app",
23
+ "react-app/jest"
24
+ ]
25
+ },
26
+ "browserslist": {
27
+ "production": [
28
+ ">0.2%",
29
+ "not dead",
30
+ "not op_mini all"
31
+ ],
32
+ "development": [
33
+ "last 1 chrome version",
34
+ "last 1 firefox version",
35
+ "last 1 safari version"
36
+ ]
37
+ }
38
+ }