-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 973 Bytes
/
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
{
"name": "react-roman-to-arabic",
"description": "Convert a Roman number to an Arabic number, and vice-versa.",
"author": "Alain D'EURVEILHER <[email protected]>",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npm run build && node server.js",
"start:dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"classnames": "2.2.6",
"express": "4.16.4",
"express-favicon": "2.0.1",
"path": "0.12.7",
"primeflex": "1.0.0-rc.1",
"primeicons": "1.0.0",
"primereact": "2.0.0-rc.1",
"prop-types": "15.6.2",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-scripts": "2.1.1",
"react-transition-group": "2.5.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": "10.11.0",
"npm": "6.4.1"
}
}